Package org.bouncycastle.crypto.general
Class PBKD.Parameters
- java.lang.Object
-
- org.bouncycastle.crypto.general.GeneralParameters<Algorithm>
-
- org.bouncycastle.crypto.general.PBKD.Parameters
-
- All Implemented Interfaces:
Parameters
- Enclosing class:
- PBKD
public static final class PBKD.Parameters extends GeneralParameters<Algorithm>
PBKD parameters.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
finalize()
PasswordConverter
getConverter()
int
getIterationCount()
DigestAlgorithm
getPRF()
byte[]
getSalt()
PBKD.Parameters
withIterationCount(int iterationCount)
PBKD.Parameters
withSalt(byte[] salt)
-
Methods inherited from class org.bouncycastle.crypto.general.GeneralParameters
getAlgorithm
-
-
-
-
Method Detail
-
withSalt
public PBKD.Parameters withSalt(byte[] salt)
-
withIterationCount
public PBKD.Parameters withIterationCount(int iterationCount)
-
getPRF
public DigestAlgorithm getPRF()
-
getSalt
public byte[] getSalt()
-
getIterationCount
public int getIterationCount()
-
getConverter
public PasswordConverter getConverter()
-
finalize
protected void finalize() throws java.lang.Throwable
- Overrides:
finalize
in classjava.lang.Object
- Throws:
java.lang.Throwable
-
-