public interface Blake2b
Modifier and Type | Interface and Description |
---|---|
static class |
Blake2b.Digest
Generalized Blake2b digest.
|
static class |
Blake2b.Engine |
static class |
Blake2b.Mac
Message Authentication Code (MAC) digest.
|
static class |
Blake2b.Param
Blake2b configuration parameters block per spec
|
static interface |
Blake2b.Spec |
static class |
Blake2b.Tree
Note that Tree is just a convenience class; incremental hash (tree)
can be done directly with the Digest class.
|
Modifier and Type | Method and Description |
---|---|
byte[] |
digest() |
byte[] |
digest(byte[] input) |
void |
digest(byte[] output,
int offset,
int len) |
void |
reset() |
void |
update(byte input) |
void |
update(byte[] input) |
void |
update(byte[] input,
int offset,
int len) |