Java科普之加密算法

       本文来自刘兆贤的博客_CSDN博客-Java高级,Android旅行,Android基础领域博主 ,引用必须注明出处!

加密方式只有两种,对称加密和非对称加密,也有说三种的,加上摘要算法,如MD5。对称加密,是指加密后可以用原方法解密,如情报传输场景;非对称加密,指加密后不可解密,主要用于登录密码校验和传输过程校验如https,客户端将登录的密码和其他数据,使用md5加密后得到串,服务端拿到密码等参数后,同样用md5加密后获得串,两个串对比,相同则让登录成功(也就说数据库不存明文密码,只存加密后的字符串),还有接口参数的校验等,例如md5参数校验;有了这种加密方式再不也担心用户名密码被盗了(除非密码本被盗等其他情况)。下面我们介绍几种常见的加密方法

通用的Base64:“对称加密”,一般用在将图片Base64后可以存入数据库。

public class Base64 {

    static private final int BASELENGTH = 128;
    static private final int LOOKUPLENGTH = 64;
    static private final int TWENTYFOURBITGROUP = 24;
    static private final int EIGHTBIT = 8;
    static private final int SIXTEENBIT = 16;
    static private final int FOURBYTE = 4;
    static private final int SIGN = -128;
    static private final char PAD = '=';
    static private final boolean fDebug = false;
    static final private byte[] base64Alphabet = new byte[BASELENGTH];
    static final private char[] lookUpBase64Alphabet = new char[LOOKUPLENGTH];

    static {
        for (int i = 0; i < BASELENGTH; ++i) {
            base64Alphabet[i] = -1;
        }
        for (int i = 'Z'; i >= 'A'; i--) {
            base64Alphabet[i] = (byte) (i - 'A');
        }
        for (int i = 'z'; i >= 'a'; i--) {
            base64Alphabet[i] = (byte) (i - 'a' + 26);
        }

        for (int i = '9'; i >= '0'; i--) {
            base64Alphabet[i] = (byte) (i - '0' + 52);
        }

        base64Alphabet['+'] = 62;
        base64Alphabet['/'] = 63;

        for (int i = 0; i <= 25; i++) {
            lookUpBase64Alphabet[i] = (char) ('A' + i);
        }

        for (int i = 26, j = 0; i <= 51; i++, j++) {
            lookUpBase64Alphabet[i] = (char) ('a' + j);
        }

        for (int i = 52, j = 0; i <= 61; i++, j++) {
            lookUpBase64Alphabet[i] = (char) ('0' + j);
        }
        lookUpBase64Alphabet[62] = (char) '+';
        lookUpBase64Alphabet[63] = (char) '/';

    }

    private static boolean isWhiteSpace(char octect) {
        return (octect == 0x20 || octect == 0xd || octect == 0xa || octect == 0x9);
    }

    private static boolean isPad(char octect) {
        return (octect == PAD);
    }

    private static boolean isData(char octect) {
        return (octect < BASELENGTH && base64Alphabet[octect] != -1);
    }

    /**
     * Encodes hex octects into Base64
     *
     * @param binaryData Array containing binaryData
     * @return Encoded Base64 array
     */
    public static String encode(byte[] binaryData) {

        if (binaryData == null) {
            return null;
        }

        int lengthDataBits = binaryData.length * EIGHTBIT;
        if (lengthDataBits == 0) {
            return "";
        }

        int fewerThan24bits = lengthDataBits % TWENTYFOURBITGROUP;
        int numberTriplets = lengthDataBits / TWENTYFOURBITGROUP;
        int numberQuartet = fewerThan24bits != 0 ? numberTriplets + 1
                : numberTriplets;
        char encodedData[] = null;

        encodedData = new char[numberQuartet * 4];

        byte k = 0, l = 0, b1 = 0, b2 = 0, b3 = 0;

        int encodedIndex = 0;
        int dataIndex = 0;
        if (fDebug) {
            System.out.println("number of triplets = " + numberTriplets);
        }

        for (int i = 0; i < numberTriplets; i++) {
            b1 = binaryData[dataIndex++];
            b2 = binaryData[dataIndex++];
            b3 = binaryData[dataIndex++];

            if (fDebug) {
                System.out.println("b1= " + b1 + ", b2= " + b2 + ", b3= " + b3);
            }

            l = (byte) (b2 & 0x0f);
            k = (byte) (b1 & 0x03);

            byte val1 = ((b1 & SIGN) == 0) ? (byte) (b1 >> 2)
                    : (byte) ((b1) >> 2 ^ 0xc0);
            byte val2 = ((b2 & SIGN) == 0) ? (byte) (b2 >> 4)
                    : (byte) ((b2) >> 4 ^ 0xf0);
            byte val3 = ((b3 & SIGN) == 0) ? (byte) (b3 >> 6)
                    : (byte) ((b3) >> 6 ^ 0xfc);

            if (fDebug) {
                System.out.println("val2 = " + val2);
                System.out.println("k4   = " + (k << 4));
                System.out.println("vak  = " + (val2 | (k << 4)));
            }

            encodedData[encodedIndex++] = lookUpBase64Alphabet[val1];
            encodedData[encodedIndex++] = lookUpBase64Alphabet[val2 | (k << 4)];
            encodedData[encodedIndex++] = lookUpBase64Alphabet[(l << 2) | val3];
            encodedData[encodedIndex++] = lookUpBase64Alphabet[b3 & 0x3f];
        }

        // form integral number of 6-bit groups
        if (fewerThan24bits == EIGHTBIT) {
            b1 = binaryData[dataIndex];
            k = (byte) (b1 & 0x03);
            if (fDebug) {
                System.out.println("b1=" + b1);
                System.out.println("b1<<2 = " + (b1 >> 2));
            }
            byte val1 = ((b1 & SIGN) == 0) ? (byte) (b1 >> 2)
                    : (byte) ((b1) >> 2 ^ 0xc0);
            encodedData[encodedIndex++] = lookUpBase64Alphabet[val1];
            encodedData[encodedIndex++] = lookUpBase64Alphabet[k << 4];
            encodedData[encodedIndex++] = PAD;
            encodedData[encodedIndex++] = PAD;
        } else if (fewerThan24bits == SIXTEENBIT) {
            b1 = binaryData[dataIndex];
            b2 = binaryData[dataIndex + 1];
            l = (byte) (b2 & 0x0f);
            k = (byte) (b1 & 0x03);

            byte val1 = ((b1 & SIGN) == 0) ? (byte) (b1 >> 2)
                    : (byte) ((b1) >> 2 ^ 0xc0);
            byte val2 = ((b2 & SIGN) == 0) ? (byte) (b2 >> 4)
                    : (byte) ((b2) >> 4 ^ 0xf0);

            encodedData[encodedIndex++] = lookUpBase64Alphabet[val1];
            encodedData[encodedIndex++] = lookUpBase64Alphabet[val2 | (k << 4)];
            encodedData[encodedIndex++] = lookUpBase64Alphabet[l << 2];
            encodedData[encodedIndex++] = PAD;
        }

        return new String(encodedData);
    }

    /**
     * Decodes Base64 data into octects
     *
     * @param encoded string containing Base64 data
     * @return Array containind decoded data.
     */
    public static byte[] decode(String encoded) {

        if (encoded == null) {
            return null;
        }

        char[] base64Data = encoded.toCharArray();
        // remove white spaces
        int len = removeWhiteSpace(base64Data);

        if (len % FOURBYTE != 0) {
            return null;// should be divisible by four
        }

        int numberQuadruple = (len / FOURBYTE);

        if (numberQuadruple == 0) {
            return new byte[0];
        }

        byte decodedData[] = null;
        byte b1 = 0, b2 = 0, b3 = 0, b4 = 0;
        char d1 = 0, d2 = 0, d3 = 0, d4 = 0;

        int i = 0;
        int encodedIndex = 0;
        int dataIndex = 0;
        decodedData = new byte[(numberQuadruple) * 3];

        for (; i < numberQuadruple - 1; i++) {

            if (!isData((d1 = base64Data[dataIndex++]))
                    || !isData((d2 = base64Data[dataIndex++]))
                    || !isData((d3 = base64Data[dataIndex++]))
                    || !isData((d4 = base64Data[dataIndex++]))) {
                return null;
            }// if found "no data" just return null

            b1 = base64Alphabet[d1];
            b2 = base64Alphabet[d2];
            b3 = base64Alphabet[d3];
            b4 = base64Alphabet[d4];

            decodedData[encodedIndex++] = (byte) (b1 << 2 | b2 >> 4);
            decodedData[encodedIndex++] = (byte) (((b2 & 0xf) << 4) | ((b3 >> 2) & 0xf));
            decodedData[encodedIndex++] = (byte) (b3 << 6 | b4);
        }

        if (!isData((d1 = base64Data[dataIndex++]))
                || !isData((d2 = base64Data[dataIndex++]))) {
            return null;// if found "no data" just return null
        }

        b1 = base64Alphabet[d1];
        b2 = base64Alphabet[d2];

        d3 = base64Data[dataIndex++];
        d4 = base64Data[dataIndex++];
        if (!isData((d3)) || !isData((d4))) {// Check if they are PAD characters
            if (isPad(d3) && isPad(d4)) {
                if ((b2 & 0xf) != 0)// last 4 bits should be zero
                {
                    return null;
                }
                byte[] tmp = new byte[i * 3 + 1];
                System.arraycopy(decodedData, 0, tmp, 0, i * 3);
                tmp[encodedIndex] = (byte) (b1 << 2 | b2 >> 4);
                return tmp;
            } else if (!isPad(d3) && isPad(d4)) {
                b3 = base64Alphabet[d3];
                if ((b3 & 0x3) != 0)// last 2 bits should be zero
                {
                    return null;
                }
                byte[] tmp = new byte[i * 3 + 2];
                System.arraycopy(decodedData, 0, tmp, 0, i * 3);
                tmp[encodedIndex++] = (byte) (b1 << 2 | b2 >> 4);
                tmp[encodedIndex] = (byte) (((b2 & 0xf) << 4) | ((b3 >> 2) & 0xf));
                return tmp;
            } else {
                return null;
            }
        } else { // No PAD e.g 3cQl
            b3 = base64Alphabet[d3];
            b4 = base64Alphabet[d4];
            decodedData[encodedIndex++] = (byte) (b1 << 2 | b2 >> 4);
            decodedData[encodedIndex++] = (byte) (((b2 & 0xf) << 4) | ((b3 >> 2) & 0xf));
            decodedData[encodedIndex++] = (byte) (b3 << 6 | b4);

        }

        return decodedData;
    }

    /**
     * remove WhiteSpace from MIME containing encoded Base64 data.
     *
     * @param data the byte array of base64 data (with WS)
     * @return the new length
     */
    private static int removeWhiteSpace(char[] data) {
        if (data == null) {
            return 0;
        }

        // count characters that's not whitespace
        int newSize = 0;
        int len = data.length;
        for (int i = 0; i < len; i++) {
            if (!isWhiteSpace(data[i])) {
                data[newSize++] = data[i];
            }
        }
        return newSize;
    }
}

更多介绍:Base64笔记 - 阮一峰的网络日志

Md5加密,主要用于C端对参数加密后做一个签名,然后S端采取同样操作,签名一致则认为安全,返回数据;目的,为了防止恶意添加参数,盗取数据;原理:非对称加密,加密过程单向不可逆,比较加密后的结果;应用方式,下面是通用的密码本,所以很容易破解,需要自定义密码本(C/S一致即可)。

    // 全局数组
    private final static String[] strDigits = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f"};
    protected static char hexDigits[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};

    // 返回形式为数字跟字符串
    private static String byteToArrayString(byte bByte) {
        int iRet = bByte;
        // System.out.println("iRet="+iRet);
        if (iRet < 0) {
            iRet += 256;
        }
        int iD1 = iRet / 16;
        int iD2 = iRet % 16;
        return strDigits[iD1] + strDigits[iD2];
    }

    // 转换字节数组为16进制字串
    private static String byteToString(byte[] bByte) {
        StringBuffer sBuffer = new StringBuffer();
        for (int i = 0; i < bByte.length; i++) {
            sBuffer.append(byteToArrayString(bByte[i]));
        }
        return sBuffer.toString();
    }

    public static String MD5Encrypt(String strObj) {
        String resultString = null;
        try {
            resultString = new String(strObj);
            MessageDigest md = MessageDigest.getInstance("MD5");
            // md.digest() 该函数返回值为存放哈希值结果的byte数组
            resultString = byteToString(md.digest(strObj.getBytes()));
        } catch (NoSuchAlgorithmException ex) {
            ex.printStackTrace();
        }
        return resultString;
    }
		MessageDigest messageDigest = MessageDigest.getInstance("MD5");
		messageDigest.update(str.getBytes(Charset.forName("UTF-8")));
		byte[] digest = messageDigest.digest();
		String sb = "";
		for (byte b : digest) {
			sb += String.format("%02x", b);// 取2位的16进制
		}
		System.out.println("digest长度:" + digest.length);
		System.out.println("字符结果长度:" + sb.length());
		return sb;

上述代码用来获得url的32位md5码,特殊的是String.format的用法,%02x用于获得digest字符的16进制前2位,与“%2x”的区别在于:如果只有1位则补0;通常情况下获得前2位可以保证md5码长度一致。

Md5算法默认是32位的,可以扩展为其他长度。

Des加密-(Data Encryption Standard),由56位密钥和8位奇偶检验符组成,通过异或、移位、置换和代换四种操作循环完成,如果一台PC计算能力是一秒一百万次,那么需要2000年才能破解,破解的方案只有穷举法猜出它的密码本或者暴力方式。特别说明一点,使用DES加密的KEY只有前8位有效,写多了也是多余。对称加密,加密方式可逆,用于双方各持有的一个密码本,一个加密一个解密,二战期间的情报加密方式类似这种。

private static String encoding = "UTF-8";

	/**
	 * sKey 奇偶校验位  加密字符串
	 */
	public static String encrypTo(String sKey, String str) {
		String result = str;
		if (str != null && str.length() > 0) {
			try {
				byte[] encodeByte = str.getBytes(encoding);
				byte[] encoder = getSymmetricResult(Cipher.ENCRYPT_MODE, sKey, encodeByte);
				result = Base64.encode(encoder).toString();
			} catch (Exception e) {
				e.printStackTrace();
				return "";
			}
		}
		return result;
	}

	/**
	 * sKey 奇偶校验位
	 * 解密字符串
	 */
	public static String decrypTo(String sKey, String str) {
		String result = str;
		if (str != null && str.length() > 0) {
			try {
				byte[] decodeByte = Base64.decode(str);
				byte[] decoder = getSymmetricResult(Cipher.DECRYPT_MODE, sKey, decodeByte);
				result = new String(decoder, encoding);
			} catch (Exception e) {
				e.printStackTrace();
				return "";
			}
		}
		return result;
	}

	/**
	 * 对称加密字节数组并返回
	 * 
	 * @param byteSource
	 *            需要加密的数据
	 * @return 经过加密的数据
	 * @throws Exception
	 */
	public static byte[] getSymmetricResult(int mode, String sKey, byte[] byteSource) throws Exception {
		try {
			SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");
			byte[] keyData = sKey.getBytes();
			DESKeySpec keySpec = new DESKeySpec(keyData);
			Key key = keyFactory.generateSecret(keySpec);
			Cipher cipher = Cipher.getInstance("DES");
			cipher.init(mode, key);
			byte[] result = cipher.doFinal(byteSource);
			return result;
		} catch (Exception e) {
			throw e;
		} finally {
		}
	}

AES加密(Advanced Encryption Start)-DES的升级版本,密钥长度可能是128位、192位和256位中的一种,使用更为复杂的算法,对称加密,同样也是可逆的,但由于复杂度加大解密时间更长。

	/**
	 * 加密
	 * 
	 * @param content
	 *            需要加密的内容
	 * @param password
	 *            加密密码
	 * @return
	 */
	public static byte[] encrypt(String password, String content) {
		try {
			KeyGenerator kgen = KeyGenerator.getInstance("AES");
			kgen.init(128, new SecureRandom(password.getBytes()));
			SecretKey secretKey = kgen.generateKey();
			byte[] enCodeFormat = secretKey.getEncoded();
			SecretKeySpec key = new SecretKeySpec(enCodeFormat, "AES");
			Cipher cipher = Cipher.getInstance("AES");// 创建密码器
			byte[] byteContent = content.getBytes("utf-8");
			cipher.init(Cipher.ENCRYPT_MODE, key);// 初始化
			byte[] result = cipher.doFinal(byteContent);
			return result; // 加密
		} catch (NoSuchAlgorithmException e) {
			e.printStackTrace();
		} catch (NoSuchPaddingException e) {
			e.printStackTrace();
		} catch (InvalidKeyException e) {
			e.printStackTrace();
		} catch (UnsupportedEncodingException e) {
			e.printStackTrace();
		} catch (IllegalBlockSizeException e) {
			e.printStackTrace();
		} catch (BadPaddingException e) {
			e.printStackTrace();
		}
		return null;
	}

	/**
	 * 解密
	 * 
	 * @param content
	 *            待解密内容
	 * @param password
	 *            解密密钥
	 * @return
	 */
	public static byte[] decrypt(String password, byte[] content) {
		try {
			KeyGenerator kgen = KeyGenerator.getInstance("AES");
			kgen.init(128, new SecureRandom(password.getBytes()));
			SecretKey secretKey = kgen.generateKey();
			byte[] enCodeFormat = secretKey.getEncoded();
			SecretKeySpec key = new SecretKeySpec(enCodeFormat, "AES");
			Cipher cipher = Cipher.getInstance("AES");// 创建密码器
			cipher.init(Cipher.DECRYPT_MODE, key);// 初始化
			byte[] result = cipher.doFinal(content);
			return result; // 加密
		} catch (NoSuchAlgorithmException e) {
			e.printStackTrace();
		} catch (NoSuchPaddingException e) {
			e.printStackTrace();
		} catch (InvalidKeyException e) {
			e.printStackTrace();
		} catch (IllegalBlockSizeException e) {
			e.printStackTrace();
		} catch (BadPaddingException e) {
			e.printStackTrace();
		}
		return null;
	}

	public static void main(String[] args) {
		String sKey = "adsasafq";
		String str = "Hello World";
		byte[] aesEncryptStr = AESEncrypt.encrypt(sKey, str);
		byte[] aesDecryptStr = AESEncrypt.decrypt(sKey, aesEncryptStr);
		System.out.println(new String(aesDecryptStr));
	}


Sha加密-(Secure Hash Algorithm),非对称加密,散列算法,与MD5算法类似,但复杂度要高出32个量级,不对称加密,加密过程不可逆,其中SHA-1-224-256-384-512加密复杂度依次增加,

其中SHA1算法被我国女教授破解,常用的是SHA2和SHA3等算法。

	/**
	 * 散列算法
	 * 
	 * @param byteSource
	 *            需要散列计算的数据
	 * @return 经过散列计算的数据
	 * @throws Exception
	 */
	public static String getShaStr(byte[] byteSource) {
		try {
			MessageDigest currentAlgorithm = MessageDigest.getInstance("SHA-256");
			currentAlgorithm.reset();
			currentAlgorithm.update(byteSource);
			return bytes2String(currentAlgorithm.digest());
		} catch (Exception e) {
			e.printStackTrace();
		}
		return null;
	}

	private static String bytes2String(byte[] aa) {// 将字节数组转换为字符串
		String hash = "";
		for (int i = 0; i < aa.length; i++) {// 循环数组
			int temp;
			if (aa[i] < 0) // 判断是否是负数
				temp = 256 + aa[i];
			else
				temp = aa[i];
			if (temp < 16)
				hash += "0";
			hash += Integer.toString(temp, 16);// 转换为16进
		}
		hash = hash.toUpperCase(); // 转换为大写
		return hash;
	}

	public static void main(String[] args) {
		String str = "Hello World";
		String shaEncryptStr = ShaEncrypt.getShaStr(str.getBytes());
		System.out.println(shaEncryptStr);// sha1-0A4D55A8D778E5022FAB701977C5D840BBC486D0
		System.out.println(shaEncryptStr.length());
	}

RSA加密(三位发明者名字首字母),非对称加密,由一个公钥和一个私钥组成,交易流程就采用这种加密方式,C端持有公钥,S端持有私钥,C端发送的加密数据只能由S端来处理,安全系统业界称为最高;原理是对两大素数的乘积做拆分,有无数种可能,所以只要公钥和私钥不泄密,一般就没有问题。非对称加密,但加密过程可逆。

根证书主要从VeriSign和GlobalSign两种,就是说默认得信任,否则就互联网没有信任基础了。

先简单介绍这几种,DES、AES对称加密,MD5、SHA(前两种又属于Hash算法)和RSA非对称加密。

有兴趣下载源码的请点击,源码

分块隐藏ECB和CBC

ECB:直接分块加密

for(int i=0;i<grey->width;i++)  
    for(int j=0;j<grey->height;j++)  
        grey->imageData[j*grey->width+i]=bitrev(grey->imageData[j*grey->width+i]);  
cvNamedWindow("ecb");  
cvShowImage("ecb", grey);  

CBC:与上块密文异或后加密,需要向量

for(int i=0;i<grey->width;i++)  
    for(int j=0;j<grey->height;j++)  
        if(i!=0&&j!=0)            
            grey->imageData[j*grey->width+i]=bitrev(grey->imageData[j*grey->width+i]^grey->imageData[j*grey->width+i-1]);  
        else  
            grey->imageData[0]=grey->imageData[0]^IV;  
cvNamedWindow("cbc");  
cvShowImage("cbc", grey); 

算法固然重要,也需要放在安全的环境下,否则被盗取的可能性比较大,也是不安全的。

1、将加密过程放在so库里,这样对方即使得知你的加密字符串,也无法知道你的密钥和加密过程

2、将加密算法通过远程管理,一旦发现出问题,通过服务器派发客户端反射的方式,下发新的算法

3、增加代码混淆的难度

4、为防止撞库,可以选择更慢的算法,来延长被破解的时间。

美国联邦调查局认为:密钥长度需要设置56位,几乎不可破解,而30位以下可以通过暴力破解-入侵的艺术。

了解更多:http://snowolf.iteye.com/blog/379860

推荐一下PHP、IOS和Android都能使用的加密方法:安全加密检测

密码学三大作用:

加密:防止坏人获得你的数据

认证:防止获得数据而你不知道

鉴权:防止假冒你

Android应用安全开发之浅谈加密算法的坑 - 阿里安全 - 博客园

使用 Android 的 AES/DES/DESede 加密算法时,不要使用默认的加密模式
ECB,应显示指定使用 CBC 或 CFB 加密模式。
说明:
加密模式 ECB、 CBC、 CFB、 OFB 等,其中 ECB 的安全性较弱,会使相同的铭文
在不同的时候产生相同的密文,容易遇到字典攻击,建议使用 CBC 或 CFB 模式。
1) ECB:Electronic codebook,电子密码本模式
2) CBC:Cipher-block chaining,密码分组链接模式
3) CFB:Cipher feedback,密文反馈模式
4) OFB:Output feedback,输出反馈模式

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

刘兆贤

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值