DrbgParameters — DRBG 매개변수 클래스

DrbgParameters — DRBG 매개변수 클래스

DRBG(결정적 난수 비트 생성기, Deterministic Random Bit Generator)에서 사용하는 매개변수를 지정하는 클래스예요. NIST SP 800-90A Revision 1에 기반해요.

출처: Java API Reference

본문

public static DrbgParameters.Instantiation instantiation(int strength, DrbgParameters.Capability capability, byte[] personalizationString)

DrbgParameters.Instantiation 객체를 생성해요.

public static DrbgParameters.NextBytes nextBytes(int strength, boolean predictionResistance, byte[] additionalInput)

DrbgParameters.NextBytes 객체를 생성해요.

public static DrbgParameters.Reseed reseed(boolean predictionResistance, byte[] additionalInput)

DrbgParameters.Reseed 객체를 생성해요.

더 알아보기 (Learn more)