public class FixedStringSaltGenerator extends Object implements SaltGenerator
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).
If the requested salt has a size in bytes smaller than the specified salt, the first n bytes are returned. If it is larger, an exception is thrown.
This class is thread-safe.
Constructor and Description |
---|
FixedStringSaltGenerator()
Creates a new instance of FixedStringSaltGenerator
|
Modifier and Type | Method and Description |
---|---|
byte[] |
generateSalt(int lengthBytes)
Return salt with the specified byte length.
|
boolean |
includePlainSaltInEncryptionResults()
As this salt generator provides a fixed salt, its inclusion
unencrypted in encryption results
is not necessary, and in fact not desirable (so that it remains hidden).
|
void |
setCharset(String charset)
Sets the charset to be applied to the salt for conversion into bytes.
|
void |
setSalt(String salt)
Sets the salt to be returned.
|
public FixedStringSaltGenerator()
public void setSalt(String salt)
salt
- the specified salt.public void setCharset(String charset)
charset
- the specified charsetpublic byte[] generateSalt(int lengthBytes)
generateSalt
in interface SaltGenerator
lengthBytes
- length in bytes.public boolean includePlainSaltInEncryptionResults()
includePlainSaltInEncryptionResults
in interface SaltGenerator
Copyright © 2016 JBoss by Red Hat. All rights reserved.