Home | History | Annotate | Download | only in spec

Lines Matching refs:prf

10  * Extension of PBEKeySpec which takes into account the PRF algorithm setting available in PKCS#5 PBKDF2.
17 private AlgorithmIdentifier prf;
26 * @param prf identifier and parameters for the PRF algorithm to use.
28 public PBKDF2KeySpec(char[] password, byte[] salt, int iterationCount, int keySize, AlgorithmIdentifier prf)
32 this.prf = prf;
36 * Return true if this spec is for the default PRF (HmacSHA1), false otherwise.
38 * @return true if this spec uses the default PRF, false otherwise.
42 return defaultPRF.equals(prf);
46 * Return an AlgorithmIdentifier representing the PRF.
48 * @return the PRF's AlgorithmIdentifier.
52 return prf;