91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
花莲县| 兴和县| 阿图什市| 郁南县| 洱源县| 桃源县| 封丘县| 柘荣县| 卢龙县| 图片| 平果县| 青田县| 甘谷县| 石狮市| 板桥市| 尉氏县| 榕江县| 巴彦淖尔市| 杭州市| 桂平市| 昭平县| 渭南市| 乌苏市| 延庆县| 通辽市| 鸡泽县| 论坛| 石渠县| 嵩明县| 湛江市| 瑞金市| 青田县| 富源县| 平江县| 曲阳县| 紫阳县| 嘉祥县| 彰化市| 通城县| 武隆县| 永善县|