public class HMacRipeMd160KeyGenerator extends VarLengthKeyGenerator
An application uses
for creating a KeyGenerator object for the HmacRipeMd160 algorithm. For actually generating the requested secret key from the KeyGenerator object just created, an application calls theKeyGenerator keyGen = KeyGenerator.getInstance("HmacRipeMd160");
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
,
HMacRipeMd160
Constructor and Description |
---|
HMacRipeMd160KeyGenerator()
Creates a new HMAC/RIPEMD-160 key generator.
|
engineGenerateKey, engineInit, engineInit, engineInit