public class Prime32Hash extends AbstractHashFunction
Modifier and Type | Field and Description |
---|---|
protected static byte[] |
DEFAULT_SEED
Default seed, the first seed from the SHA-2 256-bit hash.
|
static int |
LENGTH
Length of the hash is 32 bits (4 bytes), 4.
|
Constructor and Description |
---|
Prime32Hash()
Creates a new instance of Prime32Hash
|
Modifier and Type | Method and Description |
---|---|
Prime32Hash |
clone()
This makes public the clone method on the
Object class and
removes the exception that it throws. |
void |
evaluateInto(byte[] input,
byte[] output,
byte[] seed)
Evaluates the input into the given output
|
byte[] |
getDefaultSeed()
Gets the default seed for the hash function
|
static int |
hash(byte[] input)
Computes the prime-number hash of the given input, prime number, and seed
|
static int |
hash(byte[] input,
int seed)
Computes the prime-number hash of the given input, prime number, and seed
|
static int |
hash(byte[] input,
int prime,
int seed)
Computes the prime-number hash of the given input, prime number, and seed
|
int |
length()
Returns the number of bytes in the output hash code.
|
evaluate, evaluate, evaluateInto
public static final int LENGTH
protected static final byte[] DEFAULT_SEED
public Prime32Hash clone()
AbstractCloneableSerializable
Object
class and
removes the exception that it throws. Its default behavior is to
automatically create a clone of the exact type of object that the
clone is called on and to copy all primitives but to keep all references,
which means it is a shallow copy.
Extensions of this class may want to override this method (but call
super.clone()
to implement a "smart copy". That is, to target
the most common use case for creating a copy of the object. Because of
the default behavior being a shallow copy, extending classes only need
to handle fields that need to have a deeper copy (or those that need to
be reset). Some of the methods in ObjectUtil
may be helpful in
implementing a custom clone method.
Note: The contract of this method is that you must use
super.clone()
as the basis for your implementation.clone
in interface CloneableSerializable
clone
in class AbstractHashFunction
public int length()
HashFunction
public byte[] getDefaultSeed()
HashFunction
public void evaluateInto(byte[] input, byte[] output, byte[] seed)
HashFunction
input
- Input to compute the hash-function value ofoutput
- Output to put the hash-function intoseed
- Seed to offset the hash code.public static int hash(byte[] input)
input
- Input to hashpublic static int hash(byte[] input, int seed)
input
- Input to hashseed
- Seed to start the hash processpublic static int hash(byte[] input, int prime, int seed)
input
- Input to hashprime
- Prime number to recursively multiply the inputseed
- Seed to start the hash process