我的任务是使用Java 1.4.2来匹配给定的ColdFusion代码示例的加密结果。
已知/给定值:
假设:
给予/使用ColdFusion加密代码示例:
<cfset ThisSalt = "16byte-salt-here">
<cfset ThisAlgorithm = "AES/CBC/PKCS5Padding">
<cfset ThisKey = "a-24byte-key-string-here">
<cfset thisAdjustedNow = now()>
<cfset ThisDateTimeVar = DateFormat( thisAdjustedNow , "yyyymmdd" )>
<cfset ThisDateTimeVar = ThisDateTimeVar & TimeFormat( thisAdjustedNow , "HHmmss" )>
<cfset ThisTAID = ThisDateTimeVar & "|" & someOtherData>
<cfset ThisTAIDEnc = Encrypt( ThisTAID , ThisKey , ThisAlgorithm , "Hex" , ThisSalt)>
My Java 1.4.2加密/解密代码swag:
package so.example;
import java.security.*;
import javax.crypto.Cipher;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import org.apache.commons.codec.binary.*;
public class SO_AES192 {
private static final String _AES = "AES";
private static final String _AES_CBC_PKCS5Padding = "AES/CBC/PKCS5Padding";
private static final String KEY_VALUE = "a-24byte-key-string-here";
private static final String SALT_VALUE = "16byte-salt-here";
private static final int ITERATIONS = 1;
private static IvParameterSpec ivParameterSpec;
public static String encryptHex(String value) throws Exception {
Key key = generateKey();
Cipher c = Cipher.getInstance(_AES_CBC_PKCS5Padding);
ivParameterSpec = new IvParameterSpec(SALT_VALUE.getBytes());
c.init(Cipher.ENCRYPT_MODE, key, ivParameterSpec);
String valueToEncrypt = null;
String eValue = value;
for (int i = 0; i < ITERATIONS; i++) {
// valueToEncrypt = SALT_VALUE + eValue; // pre-pend salt - Length > sample length
valueToEncrypt = eValue; // don't pre-pend salt Length = sample length
byte[] encValue = c.doFinal(valueToEncrypt.getBytes());
eValue = Hex.encodeHexString(encValue);
}
return eValue;
}
public static String decryptHex(String value) throws Exception {
Key key = generateKey();
Cipher c = Cipher.getInstance(_AES_CBC_PKCS5Padding);
ivParameterSpec = new IvParameterSpec(SALT_VALUE.getBytes());
c.init(Cipher.DECRYPT_MODE, key, ivParameterSpec);
String dValue = null;
char[] valueToDecrypt = value.toCharArray();
for (int i = 0; i < ITERATIONS; i++) {
byte[] decordedValue = Hex.decodeHex(valueToDecrypt);
byte[] decValue = c.doFinal(decordedValue);
// dValue = new String(decValue).substring(SALT_VALUE.length()); // when salt is pre-pended
dValue = new String(decValue); // when salt is not pre-pended
valueToDecrypt = dValue.toCharArray();
}
return dValue;
}
private static Key generateKey() throws Exception {
// Key key = new SecretKeySpec(KEY_VALUE.getBytes(), _AES); // this was wrong
Key key = new SecretKeySpec(new BASE64Decoder().decodeBuffer(keyValueString), _AES); // had to un-Base64 the 'known' 24-byte key.
return key;
}
}
我无法创建匹配的加密值,也无法解密给定的加密值。我的猜测是它与我如何处理初始矢量/盐有关。
我不是很熟悉,但我认为我应该能够采用明文样本并在Java中生成与ColdFusion相同的加密值。我能够使用我的Java代码加密/解密我自己的数据(所以我是一致的)但我无法匹配或解密ColdFusion样本加密值。
我可以访问可以测试加密输出的本地Web服务。给定的ColdFusion输出样本通过/解密(当然)。如果我尝试用我的Java代码解密相同的样本(使用实际的密钥和盐),我得到一个“给定最终块未正确填充”错误。当我将加密尝试(使用实际密钥和盐)传递给测试Web服务时,我得到了相同的最终结果。
任何想法?
答案 0 :(得分:4)
Coldfusion ThisKey中的值是:
<cfset ThisKey = "a-24byte-key-string-here">
从java generateKey()函数返回的完全相同的字符串?我认为它们必须是生成的加密文本相同的字符串。
要使用CF中的固定密钥,您可能需要在强加密的CF technote上执行此操作:
您可能希望生成自己的密钥有两个原因:
- 您希望与其他加密软件的详细信息相匹配。
- 你想增加抗裂性 通过模式导向加密数据 密码分析技术。
醇>例如,要创建一个32字节的密钥 与AES算法配合使用 十六进制值:
8738fed68e7677d374e0946c8f7bd3bb4f50f23717f9f3667b2419483959039c
您将使用ColdFusion函数 BinaryDecode和ToBase64来创建 关键:
<cfset myKey =
ToBase64(BinaryDecode("8738fed68e7677d374e0946c8f7bd3bb4f50f23717f9f3667b2419483959039c","Hex")>
<cfset encrypted =Encrypt(myString, myKey, "AES")>
编辑:刚刚意识到密钥(正如您在评论中提到的)是base64,所以如果Java中的“generateKey”方法如下:
private static Key generateKey() throws Exception {
final byte[] decodedKey = new BASE64Decoder().decodeBuffer(KEY_VALUE);
final Key key = new SecretKeySpec(decodedKey, _AES);
return key;
}
你应该是金色的。