Java 密码学 - 密钥生成器
Java提供了KeyGenerator类,该类用于生成密钥,该类的对象是可重用的。
要使用 KeyGenerator 类生成密钥,请按照下面给出的步骤操作。
第 1 步:创建 KeyGenerator 对象
KeyGenerator 类提供 getInstance() 方法,该方法接受表示所需密钥生成算法的 String 变量,并返回生成密钥的 KeyGenerator 对象。
使用 getInstance() 方法创建 KeyGenerator 对象,如下所示。
//Creating a KeyGenerator object KeyGenerator keyGen = KeyGenerator.getInstance("DES");
第 2 步:创建 SecureRandom 对象
java.Security包的SecureRandom类提供了一个强大的随机数生成器,用于在Java中生成随机数。 实例化该类,如下所示。
//Creating a SecureRandom object SecureRandom secRandom = new SecureRandom();
第 3 步:初始化 KeyGenerator
KeyGenerator 类提供了一个名为 init() 的方法,该方法接受 SecureRandom 对象并初始化当前的 KeyGenerator。
使用 init() 方法初始化上一步中创建的 KeyGenerator 对象。
//Initializing the KeyGenerator keyGen.init(secRandom);
示例
以下示例演示了使用 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); } }
输出
上面的程序生成以下输出 −
com.sun.crypto.provider.DESKey@18629 [B@2ac1fdc4