Uses of Interface
org.bouncycastle.crypto.CharToByteConverter
-
Packages that use CharToByteConverter Package Description org.bouncycastle.crypto Lower level cryptography API that supports the JCA/JCE provider as well as allowing access to more primitive functionality.org.bouncycastle.jcajce Key and algorithm parameters classes for supporting provider specific algorithms and modes. -
-
Uses of CharToByteConverter in org.bouncycastle.crypto
Classes in org.bouncycastle.crypto that implement CharToByteConverter Modifier and Type Class Description class
PasswordConverter
Standard char[] to byte[] converters for password based derivation algorithms. -
Uses of CharToByteConverter in org.bouncycastle.jcajce
Constructors in org.bouncycastle.jcajce with parameters of type CharToByteConverter Constructor Description PBKDF1Key(char[] password, CharToByteConverter converter)
Basic constructor for a password based key with generation parameters for PBKDF1.PBKDF1KeyWithParameters(char[] password, CharToByteConverter converter, byte[] salt, int iterationCount)
Basic constructor for a password based key with generation parameters for PBKDF1.PBKDF2Key(char[] password, CharToByteConverter converter)
Basic constructor for a password based key using PBKDF - secret key generation parameters will be passed separately..PBKDF2KeyWithParameters(char[] password, CharToByteConverter converter, byte[] salt, int iterationCount)
Basic constructor for a password based key with generation parameters using FIPS PBKDF.
-