Home | History | Annotate | Download | only in jcajce

Lines Matching defs:salt

14     private final byte[] salt;
21 * @param salt salt for generation algorithm
24 public PKCS12KeyWithParameters(char[] password, byte[] salt, int iterationCount)
28 this.salt = Arrays.clone(salt);
38 * @param salt salt for generation algorithm
42 public PKCS12KeyWithParameters(char[] password, boolean useWrongZeroLengthConversion, byte[] salt, int iterationCount)
46 this.salt = Arrays.clone(salt);
51 * Return the salt to use in the key derivation function.
53 * @return the salt to use in the KDF.
57 return salt;