我有一个项目要对java中的字符串输入进行加密和解密。我被困了一个星期做一些研究。如果您在我的项目中可能使用的Java中有算法AES和算法Twofish的示例源代码或函数方法,我真的很感激。我真的需要你的帮助......希望有人在那里成为我的救世主。非常感谢。
答案 0 :(得分:1)
对于AES,您可以使用java的库。
以下代码将为您提供一个开始的想法。
import java.security.Key;
import javax.crypto.Cipher;
import javax.crypto.spec.SecretKeySpec;
public class AES {
public void run() {
try {
String text = "Hello World";
String key = "1234567891234567";
// Create key and cipher
Key aesKey = new SecretKeySpec(key.getBytes(), "AES");
Cipher cipher = Cipher.getInstance("AES");
// encrypt the text
cipher.init(Cipher.ENCRYPT_MODE, aesKey);
byte[] encrypted = cipher.doFinal(text.getBytes());
System.out.println("Encrypted text: " + new String(encrypted));
// decrypt the text
cipher.init(Cipher.DECRYPT_MODE, aesKey);
String decrypted = new String(cipher.doFinal(encrypted));
System.out.println("Decrypted text: " + decrypted);
}catch(Exception e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
AES app = new AES();
app.run();
}
}