ByteArrayFixedSaltGenerator
, which
implements the new FixedSaltGenerator
interface and therefore is able to benefit
from the performance improvements associated with it. This class will be removed
in 1.10.0 (or 2.0.0).public class FixedByteArraySaltGenerator extends Object implements SaltGenerator
This implementation of SaltGenerator
always returns a fixed salt
set by the user.
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 |
---|
FixedByteArraySaltGenerator()
Deprecated.
Creates a new instance of FixedByteArraySaltGenerator
|
Modifier and Type | Method and Description |
---|---|
byte[] |
generateSalt(int lengthBytes)
Deprecated.
Return salt with the specified byte length.
|
boolean |
includePlainSaltInEncryptionResults()
Deprecated.
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 |
setSalt(byte[] salt)
Deprecated.
Sets the salt to be returned.
|
public FixedByteArraySaltGenerator()
public void setSalt(byte[] salt)
salt
- the specified salt.public byte[] generateSalt(int lengthBytes)
generateSalt
in interface SaltGenerator
lengthBytes
- length in bytes.public boolean includePlainSaltInEncryptionResults()
includePlainSaltInEncryptionResults
in interface SaltGenerator
Copyright © 2017 JBoss by Red Hat. All rights reserved.