Uses of Interface
org.bouncycastle.crypto.CharToByteConverter
-
Packages that use CharToByteConverter Package Description org.bouncycastle.crypto org.bouncycastle.crypto.params org.bouncycastle.jcajce -
-
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.crypto.params
Methods in org.bouncycastle.crypto.params that return CharToByteConverter Modifier and Type Method Description CharToByteConverter
Argon2Parameters. getCharToByteConverter()
Methods in org.bouncycastle.crypto.params with parameters of type CharToByteConverter Modifier and Type Method Description Argon2Parameters.Builder
Argon2Parameters.Builder. withCharToByteConverter(CharToByteConverter converter)
-
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.
-