【发布时间】:2014-02-06 23:01:23
【问题描述】:
我有下面的 java 代码来加密一个使用 64 字符密钥的字符串。我的问题是这将是 AES-256 加密吗?
String keyString = "C0BAE23DF8B51807B3E17D21925FADF273A70181E1D81B8EDE6C76A5C1F1716E";
byte[] keyValue = hexStringToByte(keyString);
Key key = new SecretKeySpec(keyValue, "AES");
Cipher c1 = Cipher.getInstance("AES");
c1.init(Cipher.ENCRYPT_MODE, key);
String data = "Some data to encrypt";
byte[] encVal = c1.doFinal(data.getBytes());
String encryptedValue = Base64.encodeBase64String(encVal);
/* Copied the below code from another post in stackexchange */
public static byte[] hexStringToByte(String hexstr)
{
byte[] retVal = new BigInteger(hexstr, 16).toByteArray();
if (retVal[0] == 0)
{
byte[] newArray = new byte[retVal.length - 1];
System.arraycopy(retVal, 1, newArray, 0, newArray.length);
return newArray;
}
return retVal;
}
以下是合并divanov和laz的建议后的代码。
String keyString = "C0BAE23DF8B51807B3E17D21925FADF273A70181E1D81B8EDE6C76A5C1F1716E";
byte[] keyValue = DatatypeConverter.parseHexBinary(keyString);
Key key = new SecretKeySpec(keyValue, "AES");
Cipher c1 = Cipher.getInstance("AES");
c1.init(Cipher.ENCRYPT_MODE, key);
String data = "Some data to encrypt";
byte[] encVal = c1.doFinal(data.getBytes());
String encryptedValue = Base64.encodeBase64String(encVal);
【问题讨论】:
-
这个问题似乎是在询问 PBE 派生的 AES 密钥。
-
执行不正确十六进制解码的帖子在哪里?我迫切需要对它投反对票。
标签: java aes encryption