자바 암호화-KeyGenerator
Java는 KeyGenerator 이 클래스는 비밀 키를 생성하는 데 사용되며이 클래스의 객체는 재사용 할 수 있습니다.
KeyGenerator 클래스를 사용하여 키를 생성하려면 다음 단계를 따르십시오.
1 단계 : KeyGenerator 개체 만들기
그만큼 KeyGenerator 수업 제공 getInstance() 필요한 키 생성 알고리즘을 나타내는 String 변수를 받아들이고 비밀 키를 생성하는 KeyGenerator 개체를 반환하는 메서드입니다.
창조하다 KeyGenerator 개체를 사용하여 getInstance() 방법은 아래와 같습니다.
//Creating a KeyGenerator object
KeyGenerator keyGen = KeyGenerator.getInstance("DES");
2 단계 : SecureRandom 개체 만들기
그만큼 SecureRandom 의 클래스 java.Security패키지는 Java에서 난수를 생성하는 데 사용되는 강력한 난수 생성기를 제공합니다. 아래와 같이이 클래스를 인스턴스화합니다.
//Creating a SecureRandom object
SecureRandom secRandom = new SecureRandom();
3 단계 : KeyGenerator 초기화
그만큼 KeyGenerator 클래스는 init() 이 메서드는 SecureRandom 개체를 받아들이고 현재 KeyGenerator.
다음을 사용하여 이전 단계에서 만든 KeyGenerator 개체를 초기화합니다. init() 방법.
//Initializing the KeyGenerator
keyGen.init(secRandom);
예
다음 예제는 KeyGenerator 클래스를 사용하여 비밀 키의 키 생성을 보여줍니다. javax.crypto 꾸러미.
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