亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

如何實現cipher類java加密解密

小樊
116
2024-09-09 10:29:29
欄目: 編程語言

在Java中,可以使用javax.crypto包中的類和方法來實現加密和解密。以下是一個簡單的示例,展示了如何使用AES加密算法實現加密和解密。

首先,需要導入所需的類:

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;

接下來,創建一個名為CipherUtils的工具類,用于封裝加密和解密方法:

public class CipherUtils {

    private static final String ALGORITHM = "AES";

    public static String encrypt(String plainText, SecretKey secretKey) throws Exception {
        Cipher cipher = Cipher.getInstance(ALGORITHM);
        cipher.init(Cipher.ENCRYPT_MODE, secretKey);
        byte[] encryptedBytes = cipher.doFinal(plainText.getBytes(StandardCharsets.UTF_8));
        return Base64.getEncoder().encodeToString(encryptedBytes);
    }

    public static String decrypt(String encryptedText, SecretKey secretKey) throws Exception {
        Cipher cipher = Cipher.getInstance(ALGORITHM);
        cipher.init(Cipher.DECRYPT_MODE, secretKey);
        byte[] decodedBytes = Base64.getDecoder().decode(encryptedText);
        byte[] decryptedBytes = cipher.doFinal(decodedBytes);
        return new String(decryptedBytes, StandardCharsets.UTF_8);
    }

    public static SecretKey generateSecretKey() throws Exception {
        KeyGenerator keyGenerator = KeyGenerator.getInstance(ALGORITHM);
        keyGenerator.init(128);
        return keyGenerator.generateKey();
    }
}

現在,可以使用CipherUtils類進行加密和解密操作:

public class Main {
    public static void main(String[] args) {
        try {
            SecretKey secretKey = CipherUtils.generateSecretKey();

            String plainText = "Hello, World!";
            String encryptedText = CipherUtils.encrypt(plainText, secretKey);
            System.out.println("Encrypted text: " + encryptedText);

            String decryptedText = CipherUtils.decrypt(encryptedText, secretKey);
            System.out.println("Decrypted text: " + decryptedText);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

運行上述代碼,將看到加密后的文本以及解密后的原始文本。請注意,為了安全起見,應該妥善保管密鑰,不要將其暴露給未經授權的用戶。

0
翁牛特旗| 中卫市| 邯郸县| 梓潼县| 驻马店市| 林州市| 琼中| 阿拉善左旗| 芮城县| 自贡市| 新乐市| 安阳县| 百色市| 哈巴河县| 响水县| 郧西县| 资阳市| 昌黎县| 藁城市| 寻甸| 阿勒泰市| 佛坪县| 中山市| 临湘市| 长丰县| 鹤岗市| 礼泉县| 西平县| 法库县| 离岛区| 象山县| 通渭县| 山东省| 咸阳市| 义乌市| 贵港市| 武川县| 内乡县| 江安县| 翁牛特旗| 永丰县|