我需要为字符串DES加密/中断创建两个简单的方法。目标是以下列形式使用这两种方法
public static String desEcnrypt(String key,String clearMessage) { ..... }
public static String desDecrypt(String key,String encryptedMessage) { ..... }
我还没有找到这种形式的任何例子。
答案 0 :(得分:3)
使用http://juliusdavies.ca/commons-ssl/中的“not-yet-commons-ssl.jar”。
http://juliusdavies.ca/commons-ssl/pbe.html
PBE代码示例(DES-3):*
char[] password = {'c','h','a','n','g','e','i','t'};
byte[] data = "Hello World!".getBytes();
// Encrypt!
byte[] encrypted = OpenSSL.encrypt("des3", password, data);
System.out.println("ENCRYPTED: [" + new String(encrypted) + "]");
// Decrypt results of previous!
data = OpenSSL.decrypt("des3", password, encrypted);
System.out.println("DECRYPTED: [" + new String(data) + "]");
OUTPUT:
=======================
ENCRYPTED: [U2FsdGVkX19qplb9qVDVVEYxH8wjJDGpMS+F4/2pS2c=]
DECRYPTED: [Hello World!]