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

溫馨提示×

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
修武县| 金秀| 和平区| 彭州市| 琼中| 庆阳市| 仁寿县| 册亨县| 卓资县| 宁波市| 南投市| 锦屏县| 盘锦市| 赤峰市| 屏南县| 班戈县| 重庆市| 莆田市| 怀来县| 金华市| 习水县| 芜湖县| 湖州市| 华坪县| 池州市| 缙云县| 浑源县| 大安市| 锦州市| 文水县| 黄大仙区| 文化| 泸定县| 天台县| 任丘市| 策勒县| 嘉祥县| 云龙县| 汝南县| 赤城县| 涟源市|