您好,登錄后才能下訂單哦!
1、MD5(Message Digest Algorithm)加密算法
是一種單向加密算法,只能加密不能解密,示例
/** * MD5簡(jiǎn)單加密 * @param content 加密內(nèi)容 * @return String */ public static String md5Encrypt(final String content) { MessageDigest md5 = null; try { md5 = MessageDigest.getInstance(ALGORITHM_MD5); } catch (NoSuchAlgorithmException e) { e.printStackTrace(); } // md5.update(text.getBytes()); //digest()最后返回md5 hash值,返回值為8位字符串。因?yàn)閙d5 hash值是16位的hex值,實(shí)際上就是8位的字符 //BigInteger函數(shù)則將8位的字符串轉(zhuǎn)換成16位hex值,用字符串來(lái)表示;得到字符串形式的hash值 BigInteger digest = new BigInteger(md5.digest(content.getBytes())); //32位 return digest.toString(16); }
2、BASE64進(jìn)行加密/解密
通常用作對(duì)二進(jìn)制數(shù)據(jù)進(jìn)行加密,示例
/** * base64加密 * @param content 待加密內(nèi)容 * @return byte[] */ public static byte[] base64Encrypt(final String content) { return Base64.getEncoder().encode(content.getBytes()); } /** * base64解密 * @param encoderContent 已加密內(nèi)容 * @return byte[] */ public static byte[] base64Decrypt(final byte[] encoderContent) { return Base64.getDecoder().decode(encoderContent); }
3、DES(Data Encryption Standard)對(duì)稱加密/解密
數(shù)據(jù)加密標(biāo)準(zhǔn)算法,和BASE64最明顯的區(qū)別就是有一個(gè)工作密鑰,該密鑰既用于加密、也用于解密,并且要求密鑰是一個(gè)長(zhǎng)度至少大于8位的字符串,示例
/** * DES加密 * @param key 秘鑰key * @param content 待加密內(nèi)容 * @return byte[] */ public static byte[] DESEncrypt(final String key, final String content) { return processCipher(content.getBytes(), getSecretKey(key), Cipher.ENCRYPT_MODE , ALGORITHM_DES); } /** * DES解密 * @param key 秘鑰key * @param encoderContent 已加密內(nèi)容 * @return byte[] */ public static byte[] DESDecrypt(final String key, final byte[] encoderContent) { return processCipher(encoderContent, getSecretKey(key), Cipher.DECRYPT_MODE, ALGORITHM_DES); }
4、RSA非對(duì)稱加密/解密
非對(duì)稱加密算法的典型代表,既能加密、又能解密。和對(duì)稱加密算法比如DES的明顯區(qū)別在于用于加密、解密的密鑰是不同的。使用RSA算法,只要密鑰足夠長(zhǎng)(一般要求1024bit),加密的信息是不能被破解的。示例
/** * RSA加密 * @param content 待加密內(nèi)容 * @return byte[] */ public static byte[] RSAEncrypt(final String content) { return processCipher(content.getBytes(), keyPair.getPrivate(), Cipher.ENCRYPT_MODE , ALGORITHM_RSA); } /** * RSA解密 * @param encoderContent 已加密內(nèi)容 * @return byte[] */ public static byte[] RSADecrypt(final byte[] encoderContent) { return processCipher(encoderContent, keyPair.getPublic(), Cipher.DECRYPT_MODE, ALGORITHM_RSA); }
5、SHA(Secure Hash Algorithm,安全散列算法)
數(shù)字簽名等密碼學(xué)應(yīng)用中重要的工具,被廣泛地應(yīng)用于電子商務(wù)等信息安全領(lǐng)域,示例
/** * SHA加密 * @param content 待加密內(nèi)容 * @return String */ public static String SHAEncrypt(final String content) { try { MessageDigest sha = MessageDigest.getInstance(ALGORITHM_SHA); byte[] sha_byte = sha.digest(content.getBytes()); StringBuffer hexValue = new StringBuffer(); for (byte b : sha_byte) { //將其中的每個(gè)字節(jié)轉(zhuǎn)成十六進(jìn)制字符串:byte類型的數(shù)據(jù)最高位是符號(hào)位,通過(guò)和0xff進(jìn)行與操作,轉(zhuǎn)換為int類型的正整數(shù)。 String toHexString = Integer.toHexString(b & 0xff); hexValue.append(toHexString.length() == 1 ? "0" + toHexString : toHexString); } return hexValue.toString(); // StringBuffer hexValue2 = new StringBuffer(); // for (int i = 0; i < sha_byte.length; i++) { // int val = ((int) sha_byte[i]) & 0xff; // if (val < 16) { // hexValue2.append("0"); // } // hexValue2.append(Integer.toHexString(val)); // } // return hexValue2.toString(); } catch (Exception e) { e.printStackTrace(); } return ""; }
6、HMAC(Hash Message Authentication Code,散列消息鑒別碼)
使用一個(gè)密鑰生成一個(gè)固定大小的小數(shù)據(jù)塊,即MAC,并將其加入到消息中,然后傳輸。接收方利用與發(fā)送方共享的密鑰進(jìn)行鑒別認(rèn)證,示例
/** * HMAC加密 * @param key 給定秘鑰key * @param content 待加密內(nèi)容 * @return String */ public static byte[] HMACEncrypt(final String key, final String content) { try { SecretKey secretKey = new SecretKeySpec(key.getBytes(), ALGORITHM_MAC); Mac mac = Mac.getInstance(secretKey.getAlgorithm()); //初始化mac mac.init(secretKey); return mac.doFinal(content.getBytes()); } catch (Exception e) { e.printStackTrace(); } return null; }
測(cè)試代碼:
public static void main(String[] args) { //md5簡(jiǎn)單加密 String text = "i am text"; System.out.println(EnDecoderUtil.md5Encrypt(text)); //base64進(jìn)行加密解密,通常用作對(duì)二進(jìn)制數(shù)據(jù)進(jìn)行加密 byte[] base64Encrypt = EnDecoderUtil.base64Encrypt("123456789"); String toHexString = HexUtils.toHexString(base64Encrypt); System.out.println(toHexString); byte[] base64Decrypt = EnDecoderUtil.base64Decrypt(base64Encrypt); System.out.println(new String(base64Decrypt)); //DES對(duì)稱加密/解密 //要求key至少長(zhǎng)度為8個(gè)字符 String key = "123456789"; //加密 byte[] encode_bytes = EnDecoderUtil.DESEncrypt(key, "Hello, DES"); System.out.println(Base64.getEncoder().encodeToString(encode_bytes)); //解密 byte[] decode_bytes = EnDecoderUtil.DESDecrypt(key, encode_bytes); System.out.println(new String(decode_bytes)); //RSA //數(shù)據(jù)使用私鑰加密 byte[] en_byte = EnDecoderUtil.RSAEncrypt("Hi, RSA"); System.out.println(Base64.getEncoder().encodeToString(en_byte)); //用戶使用公鑰解密 byte[] de_byte = EnDecoderUtil.RSADecrypt(en_byte); System.out.println(new String(de_byte)); //服務(wù)器根據(jù)私鑰和加密數(shù)據(jù)生成數(shù)字簽名 byte[] sign_byte = EnDecoderUtil.getSignature(en_byte); System.out.println(Base64.getEncoder().encodeToString(sign_byte)); //用戶根據(jù)公鑰、加密數(shù)據(jù)驗(yàn)證數(shù)據(jù)是否被修改過(guò) boolean verify_result = EnDecoderUtil.verifySignature(en_byte, sign_byte); System.out.println(verify_result); //SHA String sha = EnDecoderUtil.SHAEncrypt("Hi, RSA"); System.out.println(sha); //HMAC byte[] mac_bytes = EnDecoderUtil.HMACEncrypt(key, "Hi, HMAC"); System.out.println(HexUtils.toHexString(mac_bytes)); }
以上就是java怎么加密的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注億速云其它相關(guān)文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。