JavaベースのAES暗号化とJavaScriptベースの復号化を必要とするアプリケーションを作成しています。基本的な形式として、暗号化に次のコードを使用しています。
public class AESencrp {
private static final String ALGO = "AES";
private static final byte[] keyValue =
new byte[] { 'A', 'b', 'c', 'd', 'e', 'f', 'g',
'h', 'i', 'j', 'k','l', 'm', 'n', 'o', 'p'};
public static String encrypt(String Data) throws Exception {
Key key = generateKey();
Cipher c = Cipher.getInstance(ALGO);
c.init(Cipher.ENCRYPT_MODE, key);
byte[] encVal = c.doFinal(Data.getBytes());
String encryptedValue = new BASE64Encoder().encode(encVal);
return encryptedValue;
}
private static Key generateKey() throws Exception {
Key key = new SecretKeySpec(keyValue, ALGO);
return key;
}
}
復号化に使用しようとしているJavaScriptは
<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/aes.js"> </script>
var decrypted = CryptoJS.AES.decrypt(encrypted,"Abcdefghijklmnop").toString(CryptoJS.enc.Utf8);
しかし、JavaScriptの復号化は機能していません。私はこれに不慣れです、誰かがJavaコードブロックを変更せずに解決する方法を教えてもらえますか?
次のようにテキストをBase-64でデコードしてみました。
var words = CryptoJS.enc.Base64.parse(encrKey);
var base64 = CryptoJS.enc.Base64.stringify(words);
var decrypted = CryptoJS.AES.decrypt(base64, "Abcdefghijklmnop");
alert("dec :" +decrypted);
しかし、それでも良くありません。
考えられるパディングの問題を解決するために、以下に提案する解決策を試しましたが、解決策はありませんでした。
var key = CryptoJS.enc.Base64.parse("QWJjZGVmZ2hpamtsbW5vcA==");
var decrypt = CryptoJS.AES.decrypt( encrKey, key, { mode: CryptoJS.mode.ECB,padding: CryptoJS.pad.Pkcs7 } );
alert("dec :" +decrypt);
Javaコードは128ビットAESキーを使用し、JavaScriptコードは256ビットAESキーを使用します。
Javaコードは、実際のキー値として「Abcdefghijklmnop」.getBytes()を使用しますが、JavaScriptコードは、実際のキーの派生元のパスフレーズとして「Abcdefghijklmnop」を使用します。
Java AESのデフォルトの変換はAES/ECB/PKCS5Paddingですが、CryptoJSのデフォルトの変換はAES/CBC/PKCS7Paddingです。
例を修正する1つの方法は、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 BASE64Encoder().encode(keyValue);
var base64Key = "QWJjZGVmZ2hpamtsbW5vcA==";
console.log( "base64Key = " + base64Key );
// this is the actual key as a sequence of bytes
var key = CryptoJS.enc.Base64.parse(base64Key);
console.log( "key = " + key );
// this is the plain text
var plaintText = "Hello, World!";
console.log( "plaintText = " + plaintText );
// this is Base64-encoded encrypted data
var 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 bytes
var 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 string
var decryptedText = decryptedData.toString( CryptoJS.enc.Utf8 );
console.log( "decryptedText = " + decryptedText );
JavaおよびJavaScriptが相互運用できるようにするには、キーまたは暗号の作成時にデフォルトを使用しないことが不可欠です。反復回数、キーの長さ、パディング、ソルト、およびIVはすべて同じ。
参照: https://github.com/mpetersen/aes-example
以下のサンプルコード:
Javaでの文字列の暗号化:
String keyValue = "Abcdefghijklmnop";
SecretKeyFactory factory = SecretKeyFactory.getInstance("PBKDF2WithHmacSHA1");
KeySpec spec = new PBEKeySpec(keyValue.toCharArray(), hex("dc0da04af8fee58593442bf834b30739"),
1000, 128);
Key key = new SecretKeySpec(factory.generateSecret(spec).getEncoded(), "AES");
Cipher c = Cipher.getInstance(“AES/CBC/PKCS5Padding”);
c.init(Cipher.ENCRYPT_MODE, key, new IvParameterSpec(hex("dc0da04af8fee58593442bf834b30739")));
byte[] encVal = c.doFinal("The Quick Brown Fox Jumped over the moon".getBytes());
String base64EncodedEncryptedData = new String(Base64.encodeBase64(encVal));
System.out.println(base64EncodedEncryptedData);
}
JavaScriptで同じ文字列を復号化する:
var iterationCount = 1000;
var keySize = 128;
var encryptionKey ="Abcdefghijklmnop";
var dataToDecrypt = "2DZqzpXzmCsKj4lfQY4d/exg9GAyyj0hVK97kPw5ZxMFs3jQiEQ6LLvUsBLdkA80" //The base64 encoded string output from Java;
var iv = "dc0da04af8fee58593442bf834b30739"
var salt = "dc0da04af8fee58593442bf834b30739"
var aesUtil = new AesUtil(keySize, iterationCount);
var plaintext = aesUtil.decrypt(salt, iv, encryptionKey, dataToDecrypt);
console.log(plaintext);
**//AESUtil - Utility class for CryptoJS**
var AesUtil = function(keySize, iterationCount) {
this.keySize = keySize / 32;
this.iterationCount = iterationCount;
};
AesUtil.prototype.generateKey = function(salt, passPhrase) {
var key = CryptoJS.PBKDF2(passPhrase, CryptoJS.enc.Hex.parse(salt),
{ keySize: this.keySize, iterations: this.iterationCount });
return key;
}
AesUtil.prototype.decrypt = function(salt, iv, passPhrase, cipherText) {
var key = this.generateKey(salt, passPhrase);
var cipherParams = CryptoJS.lib.CipherParams.create({
ciphertext: CryptoJS.enc.Base64.parse(cipherText)
});
var decrypted = CryptoJS.AES.decrypt(cipherParams,key,
{ iv: CryptoJS.enc.Hex.parse(iv) });
return decrypted.toString(CryptoJS.enc.Utf8);
}
}