我必须编写一个独立的 java 程序来从文件中解密密码,使用对称密钥进行密码解密。我之前没有使用加密和解密。任何人都可以提出任何建议我该怎么做。我需要你的指导。
问问题
2178 次
1 回答
0
也许你需要这样的东西
private static final String ALGORITHM = "AES";
....
....
Key key = new SecretKeySpec(new String("here is your symmetric key").getBytes(), ALGORITHM);
Cipher c = Cipher.getInstance(ALGORITHM);
//dencript mode (passes the key)
c.init(Cipher.DECRYPT_MODE, key);
//Decode base64 to get bytes
byte[] encBytes = new BASE64Decoder().decodeBuffer(encryptedValue);
// Decrypt
byte[] plainTxtBytes = c.doFinal(encBytes);
// Decode
String decryptedValue = new String(plainTxtBytes , "UTF-8");
以下是一些资源:
于 2012-09-10T11:35:23.660 回答