public class HMacSha512_224KeyGenerator extends VarLengthKeyGenerator
An application uses
for creating a KeyGenerator object for the HmacSHA512/224 algorithm. For actually generating the requested secret key from the KeyGenerator object just created, an application calls theKeyGenerator keyGen = KeyGenerator.getInstance("HmacSHA512/224");
generateKey
method after
optionally having initialized the generator with some random seed and/or
the required key length:
SecretKey key = keyGen.generateKey();
KeyGenerator
,
SecretKey
,
SecretKey
,
HMacSha512_224
Constructor and Description |
---|
HMacSha512_224KeyGenerator()
Creates a new HmacSHA512/224 key generator.
|
engineGenerateKey, engineInit, engineInit, engineInit