Package-level declarations
Types
Symmetric-key block ciphers for performing encryption and decryption.
Hasher that uses the Argon2id algorithm, the first choice recommended by OWASP, salting each value individually.
Hasher that uses the bcrypt algorithm, salting each value individually.
Transformer that stores the Hashed.encodedValue of a hashed value in a character column, using the provided hasher to verify the values read back out of it.
Transformer that behaves like HashingTransformer but passes null through untouched, for use with nullable character columns.
Hasher that delegates to a Spring Security passwordEncoder.
Hasher that uses the PBKDF2 algorithm, salting each value individually.
Hasher that uses the scrypt algorithm, salting each value individually.
Functions
Transforms this nullable character column into one that stores one-way hashed values, using the provided hasher, and leaving null values untouched.
Transforms this character column into one that stores one-way hashed values, using the provided hasher.