public class Hashes
extends java.lang.Object
| Constructor and Description |
|---|
Hashes() |
| Modifier and Type | Method and Description |
|---|---|
static byte[] |
ripemd160(byte[]... inputs)
Performs a RIPEMD160 hash of the concatenated inputs.
|
static byte[] |
sha3_256(byte[]... inputs)
Performs a SHA3-256 hash of the concatenated inputs.
|
static byte[] |
sha3_512(byte[]... inputs)
Performs a SHA3-512 hash of the concatenated inputs.
|
public static byte[] sha3_256(byte[]... inputs)
inputs - The byte arrays to concatenate and hash.CryptoException - if the hash operation failed.public static byte[] sha3_512(byte[]... inputs)
inputs - The byte arrays to concatenate and hash.CryptoException - if the hash operation failed.public static byte[] ripemd160(byte[]... inputs)
inputs - The byte arrays to concatenate and hash.CryptoException - if the hash operation failed.