Interface Blake2b
-
- All Known Implementing Classes:
Blake2b.Digest
,Blake2b.Engine
,Blake2b.Mac
public interface Blake2b
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface 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 specstatic 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.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method 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)
-