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

溫馨提示×

cipher類java與對稱加密算法

小樊
87
2024-09-09 10:34:40
欄目: 編程語言

Cipher 類是 Java 加密擴展(Java Cryptography Extension,JCE)中的一個關鍵組件,它提供了對多種加密算法的訪問。對稱加密算法是一種使用相同密鑰進行加密和解密的加密方式。在 Java 中,你可以使用 Cipher 類來實現對稱加密算法,例如 AES、DES 和 3DES 等。

以下是一個使用 Cipher 類和 AES 對稱加密算法的示例:

import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
import javax.crypto.spec.SecretKeySpec;
import java.util.Base64;

public class SymmetricEncryptionExample {
    public static void main(String[] args) throws Exception {
        // 生成 AES 密鑰
        KeyGenerator keyGenerator = KeyGenerator.getInstance("AES");
        keyGenerator.init(128);
        SecretKey secretKey = keyGenerator.generateKey();

        // 加密
        Cipher cipherForEncryption = Cipher.getInstance("AES");
        cipherForEncryption.init(Cipher.ENCRYPT_MODE, secretKey);
        byte[] plainTextBytes = "Hello, World!".getBytes();
        byte[] encryptedBytes = cipherForEncryption.doFinal(plainTextBytes);
        String encryptedText = Base64.getEncoder().encodeToString(encryptedBytes);
        System.out.println("Encrypted text: " + encryptedText);

        // 解密
        Cipher cipherForDecryption = Cipher.getInstance("AES");
        cipherForDecryption.init(Cipher.DECRYPT_MODE, secretKey);
        byte[] decryptedBytes = cipherForDecryption.doFinal(Base64.getDecoder().decode(encryptedText));
        String decryptedText = new String(decryptedBytes);
        System.out.println("Decrypted text: " + decryptedText);
    }
}

在這個示例中,我們首先生成一個 AES 密鑰,然后使用 Cipher 類進行加密和解密操作。注意,為了在不同的會話之間安全地存儲和傳輸密鑰,你需要使用密鑰交換算法(如 RSA)或其他安全方法。

0
宁德市| 广宁县| 刚察县| 宁陵县| 西峡县| 宁波市| 资溪县| 历史| 垫江县| 崇义县| 湟源县| 芜湖县| 南投市| 临安市| 千阳县| 讷河市| 习水县| 崇文区| 秭归县| 永寿县| 保亭| 龙井市| 海口市| 宜良县| 阆中市| 昆明市| 九龙县| 连平县| 抚州市| 闽侯县| 内丘县| 甘德县| 剑河县| 邳州市| 奎屯市| 凤山县| 靖安县| 宕昌县| 栖霞市| 教育| 莆田市|