中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
陕西省| 育儿| 顺昌县| 常宁市| 霞浦县| 望江县| 宜黄县| 奈曼旗| 郑州市| 麻栗坡县| 蕲春县| 新疆| 睢宁县| 临高县| 昔阳县| 庄河市| 宁陵县| 中方县| 红安县| 项城市| 武平县| 青田县| 四子王旗| 阜城县| 胶州市| 安福县| 镇江市| 嘉荫县| 哈巴河县| 开江县| 禹城市| 金坛市| 吴忠市| 东阿县| 平谷区| 临邑县| 正安县| 新绛县| 泗水县| 旬邑县| 南宫市|