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

溫馨提示×

如何實現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
宜阳县| 黎平县| 汤阴县| 密云县| 商城县| 西平县| 本溪| 扶沟县| 朝阳县| 香河县| 来宾市| 葫芦岛市| 苍溪县| 海淀区| 枣阳市| 定边县| 屯留县| 连平县| 金塔县| 乐都县| 宽甸| 凌海市| 宜黄县| 瑞金市| 洛川县| 永顺县| 桂平市| 庐江县| 泰州市| 玉田县| 黄陵县| 汝州市| 麟游县| 老河口市| 临西县| 越西县| 江山市| 昭苏县| 龙岩市| 开江县| 辽源市|