Home | History | Annotate | Download | only in jcajce

Lines Matching full:password

8  * A password based key for use with PKCS#12 with full PBE parameters.
18 * Basic constructor for a password based key with generation parameters.
20 * @param password password to use.
24 public PKCS12KeyWithParameters(char[] password, byte[] salt, int iterationCount)
26 super(password);
34 * Basic constructor for a password based key with generation parameters, specifying the wrong conversion for
37 * @param password password to use.
42 public PKCS12KeyWithParameters(char[] password, boolean useWrongZeroLengthConversion, byte[] salt, int iterationCount)
44 super(password, useWrongZeroLengthConversion);