Interface | Description |
---|---|
SaltGenerator |
Common interface for all salt generators which can be applied in digest
or encryption operations.
|
Class | Description |
---|---|
FixedByteArraySaltGenerator |
This implementation of
SaltGenerator always returns a fixed salt
set by the user. |
FixedStringSaltGenerator |
This implementation of
SaltGenerator always returns a fixed salt
set by the user as a String, which is returned as salt bytes using the
specified charset for conversion (UTF-8 by default). |
RandomSaltGenerator |
This implementation of
SaltGenerator holds a secure random
generator which can be used for generating random salts for encryption
or digesting. |
ZeroSaltGenerator |
This implementation of
SaltGenerator always returns a salt
of the required length, filled with zero bytes. |
Copyright © 2018 The JASYPT team. All rights reserved.