如何實(shí)現(xiàn)cipher類(lèi)java加密解密

小樊
113
2024-09-09 10:29:29

在Java中,可以使用javax.crypto包中的類(lèi)和方法來(lái)實(shí)現(xiàn)加密和解密。以下是一個(gè)簡(jiǎn)單的示例,展示了如何使用AES加密算法實(shí)現(xiàn)加密和解密。

首先,需要導(dǎo)入所需的類(lèi):

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;

接下來(lái),創(chuàng)建一個(gè)名為CipherUtils的工具類(lèi),用于封裝加密和解密方法:

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();
    }
}

現(xiàn)在,可以使用CipherUtils類(lèi)進(jìn)行加密和解密操作:

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();
        }
    }
}

運(yùn)行上述代碼,將看到加密后的文本以及解密后的原始文本。請(qǐng)注意,為了安全起見(jiàn),應(yīng)該妥善保管密鑰,不要將其暴露給未經(jīng)授權(quán)的用戶(hù)。

0