| Interface | Description |
|---|---|
| PasswordEncoder |
Encodes passwords for storage in an application and allows verification of raw
passwords against the stored versions.
|
| PasswordHashGenerator |
Used by
DefaultPasswordEncoder to generate encoded password bytes. |
| SaltGenerator |
Used by
DefaultPasswordEncoder to generate a password salt of a desired length. |
| Class | Description |
|---|---|
| DefaultPasswordEncoder |
Converts salt and encoded password bytes into a standard base64 encoding
for storage.
|
| PKCS5S2PasswordHashGenerator |
Encodes passwords using PKCS 5 version 2, as published by RSA and implemented in BouncyCastle.
|
| RandomSaltGenerator |
Generates a salt using a static instance of
Random. |
Copyright © 2017 Atlassian. All rights reserved.