温馨提示×

Java中如何进行加密和解密操作

小樊
83
2024-10-27 07:28:00
栏目: 编程语言

在Java中,可以使用javax.crypto包中的类进行加密和解密操作。下面是一个使用AES算法的示例:

  1. 导入所需的库:
import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
import javax.crypto.spec.SecretKeySpec;
import java.util.Base64;
  1. 生成密钥:
KeyGenerator keyGen = KeyGenerator.getInstance("AES");
keyGen.init(128); // 可以选择128、192或256位密钥长度
SecretKey secretKey = keyGen.generateKey();
  1. 加密方法:
public static String encrypt(String plainText, SecretKey secretKey) throws Exception {
    Cipher cipher = Cipher.getInstance("AES");
    cipher.init(Cipher.ENCRYPT_MODE, secretKey);
    byte[] encryptedBytes = cipher.doFinal(plainText.getBytes());
    return Base64.getEncoder().encodeToString(encryptedBytes);
}
  1. 解密方法:
public static String decrypt(String encryptedText, SecretKey secretKey) throws Exception {
    Cipher cipher = Cipher.getInstance("AES");
    cipher.init(Cipher.DECRYPT_MODE, secretKey);
    byte[] decodedBytes = Base64.getDecoder().decode(encryptedText);
    byte[] decryptedBytes = cipher.doFinal(decodedBytes);
    return new String(decryptedBytes);
}
  1. 使用示例:
public static void main(String[] args) {
    try {
        String plainText = "Hello, World!";
        String encryptedText = encrypt(plainText, secretKey);
        System.out.println("Encrypted Text: " + encryptedText);
        String decryptedText = decrypt(encryptedText, secretKey);
        System.out.println("Decrypted Text: " + decryptedText);
    } catch (Exception e) {
        e.printStackTrace();
    }
}

请注意,为了安全起见,密钥(secretKey)应该妥善保管,不要泄露给未经授权的人员。在实际应用中,可以考虑使用更安全的密钥交换和存储方案,例如使用Java KeyStore系统。此外,加密和解密操作可能会抛出异常,因此需要进行适当的错误处理。

0