在Java中,您可以使用javax.crypto
包中的类来实现3DES加密和解密。以下是一个简单的示例,展示了如何使用3DES加密和解密:
import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
import javax.crypto.spec.SecretKeySpec;
import java.nio.charset.StandardCharsets;
import java.util.Base64;
public static SecretKey generate3DESKey() throws Exception {
KeyGenerator keyGen = KeyGenerator.getInstance("DESede");
keyGen.init(168);
return keyGen.generateKey();
}
public static String encrypt3DES(String data, SecretKey key) throws Exception {
Cipher cipher = Cipher.getInstance("DESede/ECB/PKCS5Padding");
cipher.init(Cipher.ENCRYPT_MODE, key);
byte[] encryptedBytes = cipher.doFinal(data.getBytes(StandardCharsets.UTF_8));
return Base64.getEncoder().encodeToString(encryptedBytes);
}
public static String decrypt3DES(String encryptedData, SecretKey key) throws Exception {
Cipher cipher = Cipher.getInstance("DESede/ECB/PKCS5Padding");
cipher.init(Cipher.DECRYPT_MODE, key);
byte[] decryptedBytes = cipher.doFinal(Base64.getDecoder().decode(encryptedData));
return new String(decryptedBytes, StandardCharsets.UTF_8);
}
main
方法中调用这些方法:public static void main(String[] args) {
try {
SecretKey key = generate3DESKey();
String data = "Hello, 3DES!";
String encryptedData = encrypt3DES(data, key);
System.out.println("Encrypted data: " + encryptedData);
String decryptedData = decrypt3DES(encryptedData, key);
System.out.println("Decrypted data: " + decryptedData);
} catch (Exception e) {
e.printStackTrace();
}
}
这个示例展示了如何在Java中使用3DES加密和解密。请注意,这个示例使用了ECB(Electronic Code Book,电子代码簿)模式,它不提供任何认证。在实际应用中,您可能需要使用更安全的模式,如CBC(Cipher Block Chaining,密码块链)模式,并使用适当的密钥管理和生命周期管理。
推荐的腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云