Java Cryptography 简明教程

Java Cryptography - KeyGenerator

Java 提供 KeyGenerator 类,此类用于生成密钥并且此类的对象是可重复使用的。

要使用 KeyGenerator 类生成密钥,请按照以下给定的步骤进行操作。

Step 1: Create a KeyGenerator object

KeyGenerator 类提供 getInstance() 方法,该方法接受表示所需密钥生成算法的 String 变量,并返回生成密钥的 KeyGenerator 对象。

使用所示方法 getInstance() 创建 KeyGenerator 对象,如下所示。

//Creating a KeyGenerator object
KeyGenerator keyGen = KeyGenerator.getInstance("DES");

Step 2: Create SecureRandom object

java.Security 包的 SecureRandom 类提供了一个强随机数发生器,用于在 Java 中生成随机数。Instantiate 此类,如下所示。

//Creating a SecureRandom object
SecureRandom secRandom = new SecureRandom();

Step 3: Initialize the KeyGenerator

KeyGenerator 类提供一个名为 init() 的方法,此方法接受 SecureRandom 对象并初始化当前 KeyGenerator

使用 init() 方法初始化在上一步中创建的 KeyGenerator 对象。

//Initializing the KeyGenerator
keyGen.init(secRandom);

Example

以下示例演示如何使用 javax.crypto 包的 KeyGenerator 类生成密钥。

import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;

import java.security.Key;
import java.security.SecureRandom;

public class KeyGeneratorExample {
   public static void main(String args[]) throws Exception{
      //Creating a KeyGenerator object
      KeyGenerator keyGen = KeyGenerator.getInstance("DES");

      //Creating a SecureRandom object
      SecureRandom secRandom = new SecureRandom();

      //Initializing the KeyGenerator
      keyGen.init(secRandom);

      //Creating/Generating a key
      Key key = keyGen.generateKey();

      System.out.println(key);
      Cipher cipher = Cipher.getInstance("DES/ECB/PKCS5Padding");
      cipher.init(cipher.ENCRYPT_MODE, key);

      String msg = new String("Hi how are you");
      byte[] bytes = cipher.doFinal(msg.getBytes());
      System.out.println(bytes);
   }
}

Output

上述程序生成以下输出 −

com.sun.crypto.provider.DESKey@18629
[B@2ac1fdc4