初步加密思想

作为我们这一行,最重要的就是保护数据。。。所以,在接受服务端的数据或者传送过去的时候,我们都要保护好·自己的数据,这样起步,谁也不伤害谁!嘿嘿。。。

然后自己这里呢,有一个的demo,这样是吧加密提取出来的,然后想要用,随时可以用就ok!

这是base64:


package com.android.utills;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;

public class Base64 {

private static final char[] legalChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
.toCharArray();

/**
* data[]进行编码
*
* @param data
* @return
*/
public static String encode(byte[] data) {
int start = 0;
int len = data.length;
StringBuffer buf = new StringBuffer(data.length * 3 / 2);

int end = len - 3;
int i = start;
int n = 0;

while (i <= end) {
int d = ((((int) data[i]) & 0x0ff) << 16)
| ((((int) data[i + 1]) & 0x0ff) << 8)
| (((int) data[i + 2]) & 0x0ff);

buf.append(legalChars[(d >> 18) & 63]);
buf.append(legalChars[(d >> 12) & 63]);
buf.append(legalChars[(d >> 6) & 63]);
buf.append(legalChars[d & 63]);

i += 3;

if (n++ >= 14) {
n = 0;
buf.append(" ");
}
}

if (i == start + len - 2) {
int d = ((((int) data[i]) & 0x0ff) << 16)
| ((((int) data[i + 1]) & 255) << 8);

buf.append(legalChars[(d >> 18) & 63]);
buf.append(legalChars[(d >> 12) & 63]);
buf.append(legalChars[(d >> 6) & 63]);
buf.append("=");
} else if (i == start + len - 1) {
int d = (((int) data[i]) & 0x0ff) << 16;

buf.append(legalChars[(d >> 18) & 63]);
buf.append(legalChars[(d >> 12) & 63]);
buf.append("==");
}

return buf.toString();
}

private static int decode(char c) {
if (c >= ‘A‘ && c <= ‘Z‘)
return ((int) c) - 65;
else if (c >= ‘a‘ && c <= ‘z‘)
return ((int) c) - 97 + 26;
else if (c >= ‘0‘ && c <= ‘9‘)
return ((int) c) - 48 + 26 + 26;
else
switch (c) {
case ‘+‘:
return 62;
case ‘/‘:
return 63;
case ‘=‘:
return 0;
default:
throw new RuntimeException("unexpected code: " + c);
}
}

/**
* Decodes the given Base64 encoded String to a new byte array. The byte
* array holding the decoded data is returned.
*/

public static byte[] decode(String s) {

ByteArrayOutputStream bos = new ByteArrayOutputStream();
try {
decode(s, bos);
} catch (IOException e) {
throw new RuntimeException();
}
byte[] decodedBytes = bos.toByteArray();
try {
bos.close();
bos = null;
} catch (IOException ex) {
System.err.println("Error while decoding BASE64: " + ex.toString());
}
return decodedBytes;
}

private static void decode(String s, OutputStream os) throws IOException {
int i = 0;

int len = s.length();

while (true) {
while (i < len && s.charAt(i) <= ‘ ‘)
i++;

if (i == len)
break;

int tri = (decode(s.charAt(i)) << 18)
+ (decode(s.charAt(i + 1)) << 12)
+ (decode(s.charAt(i + 2)) << 6)
+ (decode(s.charAt(i + 3)));

os.write((tri >> 16) & 255);
if (s.charAt(i + 2) == ‘=‘)
break;
os.write((tri >> 8) & 255);
if (s.charAt(i + 3) == ‘=‘)
break;
os.write(tri & 255);

i += 4;
}
}

}

这是DES:


package com.android.utills;

import javax.crypto.Cipher;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;

/**
* DES加密工具类
*/
public class DesUtil {

private static byte[] iv = { 1, 2, 3, 4, 5, 6, 7, 8 };

public static String encryptDES(String encryptString, String encryptKey)
throws Exception {
// IvParameterSpec zeroIv = new IvParameterSpec(new byte[8]);
IvParameterSpec zeroIv = new IvParameterSpec(iv);
SecretKeySpec key = new SecretKeySpec(encryptKey.getBytes(), "DES");
Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
cipher.init(Cipher.ENCRYPT_MODE, key, zeroIv);
byte[] encryptedData = cipher.doFinal(encryptString.getBytes());

return Base64.encode(encryptedData);
}

public static String decryptDES(String decryptString, String decryptKey)
throws Exception {
byte[] byteMi = new Base64().decode(decryptString);
IvParameterSpec zeroIv = new IvParameterSpec(iv);
// IvParameterSpec zeroIv = new IvParameterSpec(new byte[8]);
SecretKeySpec key = new SecretKeySpec(decryptKey.getBytes(), "DES");
Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
cipher.init(Cipher.DECRYPT_MODE, key, zeroIv);
byte decryptedData[] = cipher.doFinal(byteMi);

return new String(decryptedData);

}

/*
* private static final String ENCRYPT_TYPE = "DES"; private static String
* defaultKey = "";// 字符串默认键值 private Cipher encryptCipher = null;// 加密工具
* private Cipher decryptCipher = null;// 解密工具
*
* public DesUtil() throws Exception { this(defaultKey); }
*//**
* 指定密钥构造方法
*
* @param strKey
* 指定的密钥
* @throws Exception
*/
/*
* public DesUtil(String strKey) throws Exception { Security.addProvider(new
* com.sun.crypto.provider.SunJCE()); Key key = getKey(strKey.getBytes());
* encryptCipher = Cipher.getInstance(ENCRYPT_TYPE);
* encryptCipher.init(Cipher.ENCRYPT_MODE, key); decryptCipher =
* Cipher.getInstance(ENCRYPT_TYPE); decryptCipher.init(Cipher.DECRYPT_MODE,
* key); }
*//**
* 加密字节数组
*
* @param arr
* 需加密的字节数组
* @return 加密后的字节数组
* @throws Exception
*/
/*
* private byte[] encryptStr(byte[] arr) throws Exception { return
* encryptCipher.doFinal(arr); }
*//**
* 加密字符串
*
* @param strIn
* 需加密的字符串
* @return 加密后的字符串
* @throws Exception
*/
/*
* public String encrypt(String strIn) throws Exception { return
* StrConvertUtil.byteArrToHexStr(encryptStr(strIn.getBytes())); }
*//**
* 解密字节数组
*
* @param arr
* 需解密的字节数组
* @return 解密后的字节数组
* @throws Exception
*/
/*
* private byte[] decryptStr(byte[] arr) throws Exception { return
* decryptCipher.doFinal(arr); }
*//**
* 解密字符串
*
* @param strIn
* 需解密的字符串
* @return 解密后的字符串
* @throws Exception
*/
/*
* public String decrypt(String strIn) throws Exception { return new
* String(decryptStr(StrConvertUtil.hexStrToByteArr(strIn))); }
*//**
* 从指定字符串生成密钥,密钥所需的字节数组长度为8位。不足8位时后面补0,超出8位只取前8位
*
* @param arrBTmp
* 构成该字符串的字节数组
* @return 生成的密钥
*/
/*
* private Key getKey(byte[] arrBTmp) { byte[] arrB = new byte[8];//
* 创建一个空的8位字节数组(默认值为0) // 将原始字节数组转换为8位 for (int i = 0; i < arrBTmp.length &&
* i < arrB.length; i++) { arrB[i] = arrBTmp[i]; } Key key = new
* javax.crypto.spec.SecretKeySpec(arrB, ENCRYPT_TYPE);// 生成密钥 return key; }
*/
}

这是MD5:


package com.android.utills;

import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

/**
* MD5加密工具类
*
*/
public class Md5Util {

/**
* 根据输入的字符串生成固定的32位MD5码
*
* @param str
* 输入的字符串
* @return MD5码
*/
public final static String getMd5(String str) {
MessageDigest mdInst = null;
try {
mdInst = MessageDigest.getInstance("MD5");
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
}
mdInst.update(str.getBytes());// 使用指定的字节更新摘要
byte[] md = mdInst.digest();// 获得密文
return StrConvertUtil.byteArrToHexStr(md);
}
}

这是转换:


package com.android.utills;

import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

/**
* MD5加密工具类
*
*/
public class Md5Util {

/**
* 根据输入的字符串生成固定的32位MD5码
*
* @param str
* 输入的字符串
* @return MD5码
*/
public final static String getMd5(String str) {
MessageDigest mdInst = null;
try {
mdInst = MessageDigest.getInstance("MD5");
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
}
mdInst.update(str.getBytes());// 使用指定的字节更新摘要
byte[] md = mdInst.digest();// 获得密文
return StrConvertUtil.byteArrToHexStr(md);
}
}

okay、。。

当然,这里还有提供详细加密的路径链接:

http://apprentice.blog.51cto.com/2214645/1381824

http://hi.baidu.com/cuihenrychl/item/751966f0c31e310acf9f32e4?qq-pf-to=pcqq.c2c

初步加密思想,布布扣,bubuko.com

时间: 2024-11-06 16:31:03

初步加密思想的相关文章

混沌方法的数字图像加密

Abstract:目前混沌系统与加密技术相结合是现如今最热门的一个课题,虽然有大量的加密算法面世,但是这些加密算法并不成熟,仍然需要进一步的研究.本文采用像素位置置乱变换和像素值替代变换相结合的加密思想,设计出一种基于混沌的数字图像加密算法.引入了整数域上的逆仿射变换,算法中采用二维 logistic 混沌映射相结合的方法,生成多组混沌序列,像素置乱变换与灰度值替换都由这些混沌序列所控制.多混沌序列产生的密钥空间大于单一的混沌序列所产生的密钥空间,因此本文研究的算法加密强度很高. 1. 虫口模型

加密技术在数据外包(DASS)中的应用

好吧,虽然加密也被reject了,但是既然看了这些天,就把一些理解神马的写上来好啦~ 数据场景是介个样子的: 假如我有海量的数据用第三方的数据库存储,为了保证数据的安全性,我需要对数据进行加密.按照传统的逻辑,要检索存储在第三方的加密数据,需要把数据从第三方下载过来,解密后再检索,这种方式仅仅是把第三方当做硬盘来用,检索速度慢,而且浪费了第三方的计算资源.所以我需要有一种算法,能让第三方在不理解数据内容的基础上进行检索. 本文就是探讨目前的解决方案.主流的加密思想也有两种:保序加密和同态加密.加

Linux加密和安全

墨菲定律  墨菲定律:一种心理学效应,是由爱德华·墨菲(Edward A. Murphy)提出的,原话:如果有两种或两种以上的方式去做某件事情,而其中一种选择方式将导致灾难,则必定有人会做出这种选择  主要内容:     任何事都没有表面看起来那么简单     所有的事都会比你预计的时间长     会出错的事总会出错     如果你担心某种情况发生,那么它就更有可能发生 安全机制   1.信息安全防护的目标:     保密性 Confidentiality     完整性 Integrity  

字母加密-C基础

输入一个英文小写字符和正整数k(k<26),将英文字母加密并输出.加密思想:将每个字母c加一个序数k, 即用它后面的第k个字母代替,变换公式:c = c + k.如果字母为z,则后一个字母是a,也就是字母表形成一个圆. 输入格式: 一个字母和一个序数. 输出格式: 输出加密后的字母. 输入样例: 在这里给出一组输入.例如: b 11 输出样例: 在这里给出相应的输出.例如: m 1 #include<bits/stdc++.h> 2 using namespace std; 3 4 in

java笔记2

1      关键字 1.1    关键字的概述 Java的关键字对java的编译器有特殊的意义,他们用来表示一种数据类型,或者表示程序的结构等,关键字不能用作变量名.方法名.类名.包名. 1.2    常见的关键字 备注:不必死记硬背,如果使用关键字作为标识符,编译器能提示错误. goto 是java的保留关键字,意思是java并没有使用goto,以后是否使用未定. 2      标识符 2.1    什么是标识符 就是程序员在定义java程序时,自定义的一些名字,例如helloworld 程

java基础--1--运算符

一.位运算符 任何信息在计算机中都是二进制的形式保存的,“&”,“|”,“^”除了可以作为逻辑运算符也可以作为位运算符. &:只有参与运算的两位都为1,&运算的结果才为1,否则就为0. |:只有参与运算的两边都为0,|运算的结果才为0,否则为1. ^:参与运算的两边相同为0,不同为1. ~:反码:取反. 一个数异或同一个数两次,结果还是那个数.  用处一个简单的加密思想.(加密图片代码:) import java.io.*; class Demo4 { public static

软件开发基本功

软件开发基本功:How to program better and faster ——读<编程珠玑I>有感: Program.Program better. Program faster. 要从事软件开发,首先要学会编程.如何编程呢?如何编写更高效更优雅的程序呢?<编程珠玑>通过简单而熟悉的示例,揭示了许多非常有益的编程原理和技巧,极具启发性. 基本流程: 问题定义—— 应用框架与界面设计 —— 选择合适的数据结构和高效的算法(对象和消息)—— 性能估计 —— 接口声明 —— 伪代

移动端加解密

算法分类 根据加密结果是否可以被解密,算法可以分为可逆加密和不可逆加密(单向加密),从这个意义上来说,单向加密只能称之为加密算法而不是加解密算法.对于可逆加密,又可以根据密钥的的对称性分为对称加密和非对称加密.具体的分类结构如下: 可逆加密 对称加密:DES,3DES,AES,PBE 非对称加密:RSA,DSA,ECC 不可逆加密(单向加密):MD5,SHA,HMAC 密钥介绍 在详细介绍各种加解密算法之前,我们需要对"密钥"这一概念做一下简单介绍,方便我们对下面内容的展开. 密钥在加

打印1到最大的n位数——12

输入数字n,按顺序打印出从1到最大的n位十进制数.比如输入3,则打印出1.2.3...一直到最大的3位数即999. 其实一看这个题,就可以想到用一个循环来打印,循环次数就为10的n次方减一,即输入3循环999次依次打印出所对应的值.但是,有一个重要的点就是,如果n的值很大,大到溢出了所能表示的最大整型范围的值,比如用long long数据类型都存放不下了要怎么办呢?这就可以考虑,用字符串的形式来表达大数据,反正只是说让打印出来: 程序设计如下: #include <iostream> #inc