Java 详解单向加密--MD5、SHA和HMAC及简单实现实例
java 详解单向加密--md5、sha和hmac及简单实现实例
概要:
md5、sha、hmac这三种加密算法,可谓是非可逆加密,就是不可解密的加密方法。
md5
md5即message-digest algorithm 5(信息-摘要算法5),用于确保信息传输完整一致。md5是输入不定长度信息,输出固定长度128-bits的算法。
md5算法具有以下特点:
1、压缩性:任意长度的数据,算出的md5值长度都是固定的。
2、容易计算:从原数据计算出md5值很容易。
3、抗修改性:对原数据进行任何改动,哪怕只修改1个字节,所得到的md5值都有很大区别。
4、强抗碰撞:已知原数据和其md5值,想找到一个具有相同md5值的数据(即伪造数据)是非常困难的。
md5还广泛用于操作系统的登陆认证上,如unix、各类bsd系统登录密码、数字签名等诸多方面。如在unix系统中用户的密码是以md5(或其它类似的算法)经hash运算后存储在文件系统中。当用户登录的时候,系统把用户输入的密码进行md5 hash运算,然后再去和保存在文件系统中的md5值进行比较,进而确定输入的密码是否正确。通过这样的步骤,系统在并不知道用户密码的明码的情况下就可以确定用户登录系统的合法性。这可以避免用户的密码被具有系统管理员权限的用户知道。md5将任意长度的“字节串”映射为一个128bit的大整数,并且通过该128bit反推原始字符串是非常困难的。
sha
sha(secure hash algorithm,安全散列算法),数字签名等密码学应用中重要的工具,被广泛地应用于电子商务等信息安全领域。虽然sha与md5通过碰撞法都被破解了, 但是sha仍然是公认的安全加密算法,较之md5更为安全。
sha所定义的长度
下表中的中继散列值(internal state)表示对每个数据区块压缩散列过后的中继值(internal hash sum)。
算法 | 输出散列值长度(bits) | 中继散列值长度(bits) | 数据区块长度(bits) | 最大输入消息长度(bits) | 一个word长度(bits) | 循环次数 | 使用到的运算符 | 碰撞攻击 |
---|---|---|---|---|---|---|---|---|
sha-0 | 160 | 160 | 512 | 264 − 1 | 32 | 80 | +,and,or,xor,rotl | 是 |
sha-1 | 160 | 160 | 512 | 264 − 1 | 32 | 80 | +,and,or,xor,rotl | 存在263的攻击 |
sha-256/224 | 256/224 | 256 | 512 | 264 − 1 | 32 | 64 | +,and,or,xor,shr,rotr | 尚未出现 |
sha-512/384 | 512/384 | 512 | 1024 | 2128 − 1 | 64 | 80 | +,and,or,xor,shr,rotr | 尚未出现 |
hmac
hmac(hash message authentication code),散列消息鉴别码,基于密钥的hash算法的认证协议。消息鉴别码实现鉴别的原理是,用公开函数和密钥产生一个固定长度的值作为认证标识,用这个标识鉴别消息的完整性。使用一个密钥生成一个固定大小的小数据块,即mac,并将其加入到消息中,然后传输。接收方利用与发送方共享的密钥进行鉴别认证等。
java示例
package com.zzj.encryption; import java.security.messagedigest; import javax.crypto.mac; import javax.crypto.secretkey; import javax.crypto.spec.secretkeyspec; import org.apache.commons.codec.binary.base64; /** * 单向加密(非可逆加密) * @author lenovo * */ public class onewayencryption { static final string algorithm_md5 = "md5"; static final string algorithm_sha = "sha"; /** * mac算法可选以下多种算法 * <pre> * hmacmd5 * hmacsha1 * hmacsha256 * hmacsha384 * hmacsha512 * </pre> */ static final string algorithm_mac = "hmacmd5"; /** 密钥 **/ static final string mac_key = "abcdef"; public static void main(string[] args) throws exception { string source = "我是程序猿!我很骄傲!"; // md5加密 printbase64(encryptionmd5(source)); // sha加密 printbase64(encryptionsha(source)); // hmac加密 printbase64(encryptionhmac(source)); } static void printbase64(byte[] out) throws exception { system.out.println(encodebase64(out)); } /** * md5加密 * @param source * @return * @throws exception */ static byte[] encryptionmd5(string source) throws exception { messagedigest md = messagedigest.getinstance(algorithm_md5); md.update(source.getbytes("utf-8")); return md.digest(); } /** * sha加密 * @param source * @return * @throws exception */ static byte[] encryptionsha(string source) throws exception { messagedigest md = messagedigest.getinstance(algorithm_sha); md.update(source.getbytes("utf-8")); return md.digest(); } /** * hmac加密 * @return * @throws exception */ static byte[] encryptionhmac(string source) throws exception { secretkey secretkey = new secretkeyspec(mac_key.getbytes("utf-8"), algorithm_mac); mac mac = mac.getinstance(algorithm_mac); mac.init(secretkey); mac.update(source.getbytes("utf-8")); return mac.dofinal(); } /** * base64编码 * @param source * @return * @throws exception */ static string encodebase64(byte[] source) throws exception{ return new string(base64.encodebase64(source), "utf-8"); } }
结果:
1cnbzhnhfsfv3bfpla71wa== kl5ki61xq44e/szspa2suntmaec= jf2v/u9td5l8ygaimnvtzw==
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
上一篇: java遍历读取xml文件内容
下一篇: 模拟Ping操作的一个Java类