使用Java的AES加密和使用Java的解密

使用Java的AES加密和使用Java的解密,第1张

使用Java的AES加密和使用Java的解密
  1. 您的Java代码使用128位AES密钥,而Javascript代码使用256位AES密钥。

  2. 您的Java代码使用“ Abcdefghijklmnop” .getBytes()作为实际键值,而您的Javascript代码使用“ Abcdefghijklmnop”作为导出实际密钥的密码。

  3. Java AES的默认转换是AES / ECB / PKCS5Padding,而CryptoJS的默认转换是AES / CBC / PKCS7Padding。

解决示例的一种方法是修复Javascript方面:

// this is base64 representation of the Java counterpart// byte[] keyValue = new byte[] { 'A', 'b', 'c', 'd', 'e', 'f', 'g',//     'h', 'i', 'j', 'k','l', 'm', 'n', 'o', 'p'};// String keyForJS = new base64Enprer().enpre(keyValue);var base64Key = "QWJjZGVmZ2hpamtsbW5vcA==";console.log( "base64Key = " + base64Key );// this is the actual key as a sequence of bytesvar key = CryptoJS.enc.base64.parse(base64Key);console.log( "key = " + key );// this is the plain textvar plaintText = "Hello, World!";console.log( "plaintText = " + plaintText );// this is base64-enpred encrypted datavar encryptedData = CryptoJS.AES.encrypt(plaintText, key, {    mode: CryptoJS.mode.ECB,    padding: CryptoJS.pad.Pkcs7});console.log( "encryptedData = " + encryptedData );// this is the decrypted data as a sequence of bytesvar decryptedData = CryptoJS.AES.decrypt( encryptedData, key, {    mode: CryptoJS.mode.ECB,    padding: CryptoJS.pad.Pkcs7} );console.log( "decryptedData = " + decryptedData );// this is the decrypted data as a stringvar decryptedText = decryptedData.toString( CryptoJS.enc.Utf8 );console.log( "decryptedText = " + decryptedText );


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5507660.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-13
下一篇 2022-12-13

发表评论

登录后才能评论

评论列表(0条)

保存