Cipher 類是 Java 加密擴展(Java Cryptography Extension,JCE)中的一個關鍵組件,它提供了對多種加密算法的訪問。對稱加密算法是一種使用相同密鑰進行加密和解密的加密方式。在 Java 中,你可以使用 Cipher 類來實現對稱加密算法,例如 AES、DES 和 3DES 等。
以下是一個使用 Cipher 類和 AES 對稱加密算法的示例:
import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
import javax.crypto.spec.SecretKeySpec;
import java.util.Base64;
public class SymmetricEncryptionExample {
public static void main(String[] args) throws Exception {
// 生成 AES 密鑰
KeyGenerator keyGenerator = KeyGenerator.getInstance("AES");
keyGenerator.init(128);
SecretKey secretKey = keyGenerator.generateKey();
// 加密
Cipher cipherForEncryption = Cipher.getInstance("AES");
cipherForEncryption.init(Cipher.ENCRYPT_MODE, secretKey);
byte[] plainTextBytes = "Hello, World!".getBytes();
byte[] encryptedBytes = cipherForEncryption.doFinal(plainTextBytes);
String encryptedText = Base64.getEncoder().encodeToString(encryptedBytes);
System.out.println("Encrypted text: " + encryptedText);
// 解密
Cipher cipherForDecryption = Cipher.getInstance("AES");
cipherForDecryption.init(Cipher.DECRYPT_MODE, secretKey);
byte[] decryptedBytes = cipherForDecryption.doFinal(Base64.getDecoder().decode(encryptedText));
String decryptedText = new String(decryptedBytes);
System.out.println("Decrypted text: " + decryptedText);
}
}
在這個示例中,我們首先生成一個 AES 密鑰,然后使用 Cipher 類進行加密和解密操作。注意,為了在不同的會話之間安全地存儲和傳輸密鑰,你需要使用密鑰交換算法(如 RSA)或其他安全方法。