Home | History | Annotate | Download | only in spec

Lines Matching refs:prf

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