Uses of Class
org.bouncycastle.crypto.PasswordBasedDeriver.KeyType
-
Packages that use PasswordBasedDeriver.KeyType Package Description org.bouncycastle.crypto Lower level cryptography API that supports the JCA/JCE provider as well as allowing access to more primitive functionality. -
-
Uses of PasswordBasedDeriver.KeyType in org.bouncycastle.crypto
Methods in org.bouncycastle.crypto that return PasswordBasedDeriver.KeyType Modifier and Type Method Description static PasswordBasedDeriver.KeyType
PasswordBasedDeriver.KeyType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PasswordBasedDeriver.KeyType[]
PasswordBasedDeriver.KeyType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.bouncycastle.crypto with parameters of type PasswordBasedDeriver.KeyType Modifier and Type Method Description byte[]
PasswordBasedDeriver. deriveKey(PasswordBasedDeriver.KeyType keyType, int keySizeInBytes)
Derive a key of the given keySizeInBytes length.byte[][]
PasswordBasedDeriver. deriveKeyAndIV(PasswordBasedDeriver.KeyType keyType, int keySizeInBytes, int ivSizeInBytes)
Derive a key of the given keySizeInBytes length and an iv of ivSizeInBytes length.
-