Searched defs:encodeWithRandomSalt (Results 1 - 6 of 6) sorted by relevance

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/extensions/
H A DPKCS5S2PasswordStorageScheme.java122 byte[] digestBytes = encodeWithRandomSalt(plaintext, saltBytes,random);
187 byte[] digestBytes = encodeWithRandomSalt(plaintext, saltBytes,random);
263 byte[] digestBytes = encodeWithRandomSalt(ByteString.wrap(passwordBytes), saltBytes);
269 private static byte[] encodeWithRandomSalt(ByteString plaintext, byte[] saltBytes) method in class:PKCS5S2PasswordStorageScheme
275 return encodeWithRandomSalt(plaintext, saltBytes, random);
320 private static byte[] encodeWithRandomSalt(ByteSequence plaintext, byte[] saltBytes, SecureRandom random) method in class:PKCS5S2PasswordStorageScheme
H A DPBKDF2PasswordStorageScheme.java146 byte[] digestBytes = encodeWithRandomSalt(plaintext, saltBytes, iterations,random);
219 byte[] digestBytes = encodeWithRandomSalt(plaintext, saltBytes, iterations,random);
298 byte[] digestBytes = encodeWithRandomSalt(password, saltBytes, iterations);
304 private static byte[] encodeWithRandomSalt(ByteString plaintext, byte[] saltBytes, int iterations) method in class:PBKDF2PasswordStorageScheme
310 return encodeWithRandomSalt(plaintext, saltBytes, iterations, random);
355 private static byte[] encodeWithRandomSalt(ByteSequence plaintext, byte[] saltBytes, method in class:PBKDF2PasswordStorageScheme
/forgerock/opendj2/src/server/org/opends/server/extensions/
H A DPBKDF2PasswordStorageScheme.java157 byte[] digestBytes = encodeWithRandomSalt(plaintext, saltBytes, iterations);
242 byte[] digestBytes = encodeWithRandomSalt(plaintext, saltBytes, iterations);
332 byte[] digestBytes = encodeWithRandomSalt(password, saltBytes, iterations);
339 private static byte[] encodeWithRandomSalt(ByteString plaintext, byte[] saltBytes, method in class:PBKDF2PasswordStorageScheme
346 return encodeWithRandomSalt(plaintext, saltBytes, iterations, random, factory);
399 private byte[] encodeWithRandomSalt(ByteSequence plaintext, byte[] saltBytes, method in class:PBKDF2PasswordStorageScheme
404 return encodeWithRandomSalt(plaintext, saltBytes, iterations, random, factory);
408 private static byte[] encodeWithRandomSalt(ByteSequence plaintext, byte[] saltBytes, method in class:PBKDF2PasswordStorageScheme
H A DPKCS5S2PasswordStorageScheme.java132 byte[] digestBytes = encodeWithRandomSalt(plaintext, saltBytes);
208 byte[] digestBytes = encodeWithRandomSalt(plaintext, saltBytes);
294 byte[] digestBytes = encodeWithRandomSalt(ByteString.wrap(passwordBytes), saltBytes);
301 private static byte[] encodeWithRandomSalt(ByteString plaintext, byte[] saltBytes) method in class:PKCS5S2PasswordStorageScheme
308 return encodeWithRandomSalt(plaintext, saltBytes, random, factory);
361 private byte[] encodeWithRandomSalt(ByteSequence plaintext, byte[] saltBytes) method in class:PKCS5S2PasswordStorageScheme
366 return encodeWithRandomSalt(plaintext, saltBytes, random, factory);
370 private static byte[] encodeWithRandomSalt(ByteSequence plaintext, byte[] saltBytes, method in class:PKCS5S2PasswordStorageScheme
/forgerock/opendj2-hg/src/server/org/opends/server/extensions/
H A DPBKDF2PasswordStorageScheme.java157 byte[] digestBytes = encodeWithRandomSalt(plaintext, saltBytes, iterations);
242 byte[] digestBytes = encodeWithRandomSalt(plaintext, saltBytes, iterations);
332 byte[] digestBytes = encodeWithRandomSalt(password, saltBytes, iterations);
339 private static byte[] encodeWithRandomSalt(ByteString plaintext, byte[] saltBytes, method in class:PBKDF2PasswordStorageScheme
346 return encodeWithRandomSalt(plaintext, saltBytes, iterations, random, factory);
399 private byte[] encodeWithRandomSalt(ByteSequence plaintext, byte[] saltBytes, method in class:PBKDF2PasswordStorageScheme
404 return encodeWithRandomSalt(plaintext, saltBytes, iterations, random, factory);
408 private static byte[] encodeWithRandomSalt(ByteSequence plaintext, byte[] saltBytes, method in class:PBKDF2PasswordStorageScheme
H A DPKCS5S2PasswordStorageScheme.java132 byte[] digestBytes = encodeWithRandomSalt(plaintext, saltBytes);
208 byte[] digestBytes = encodeWithRandomSalt(plaintext, saltBytes);
294 byte[] digestBytes = encodeWithRandomSalt(ByteString.wrap(passwordBytes), saltBytes);
301 private static byte[] encodeWithRandomSalt(ByteString plaintext, byte[] saltBytes) method in class:PKCS5S2PasswordStorageScheme
308 return encodeWithRandomSalt(plaintext, saltBytes, random, factory);
361 private byte[] encodeWithRandomSalt(ByteSequence plaintext, byte[] saltBytes) method in class:PKCS5S2PasswordStorageScheme
366 return encodeWithRandomSalt(plaintext, saltBytes, random, factory);
370 private static byte[] encodeWithRandomSalt(ByteSequence plaintext, byte[] saltBytes, method in class:PKCS5S2PasswordStorageScheme

Completed in 33 milliseconds