我正在尝试加密和解密我从用户那里得到的字符串
我在google上做了一些搜索,我找到了这段代码。
try{
String text="";
String key="Bar12345Bar12345";
System.out.print("Input Text>>");
text=sc.nextLine();
Key aesKey = new SecretKeySpec(key.getBytes(),"AES");
Cipher cipher = Cipher.getInstance("AES");
cipher.init(Cipher.ENCRYPT_MODE, aesKey);
byte[] encrypted = cipher.doFinal(text.getBytes());
String encryptedValue = Base64.getEncoder().encodeToString(encrypted);
System.out.println(encryptedValue);
cipher.init(Cipher.DECRYPT_MODE, aesKey);
String decrypted = new String(cipher.doFinal(encrypted));
System.out.println(decrypted);
}catch(Exception e){
e.printStackTrace();
}
但是给出的字符串是乱码(某种符号),它返回错误
有没有其他方法来加密和解密文本?或者代码可能需要进行一些更改?
提前致谢!
以下是您需要的参考链接
http://www.software-architect.net/articles/using-strong-encryption-in-java/introduction.html
编辑: 感谢@sgrillon指出解决方案的链接。
答案 0 :(得分:0)
因为System.out.println(new String(encrypted));
将字节数组转换为非可读的非ASCII格式。要使其可读,需要使用Base64编码器将此byte []转换为ASCII格式。
我已将您的代码输出转换为Base64格式输出,因此您可以读取输出。
Scanner sc = new Scanner(System.in);
try{
String text="";
String key="Bar12345Bar12345";
System.out.print("Input Text>> ");
text= sc.nextLine();
java.security.Key aesKey = new SecretKeySpec(key.getBytes(),"AES");
Cipher cipher = Cipher.getInstance("AES");
cipher.init(Cipher.ENCRYPT_MODE, aesKey);
byte[] encrypted = cipher.doFinal(text.getBytes());
String outputString = Base64.getEncoder().encodeToString(encrypted);
System.out.println(outputString);
cipher.init(Cipher.DECRYPT_MODE, aesKey);
String decrypted = new String(cipher.doFinal(Base64.getDecoder().decode(outputString.getBytes())));
System.out.println(decrypted);
}catch(Exception e){
e.printStackTrace();
}