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