Standalone implementation of BLAKE2b cryptographic hash function in Java.
See com.rfksystems.blake2b.Blake2BTest for example use.
This package includes implementation of java.security.Provider in com.rfksystems.blake2b.security.Blake2bProvider
class. You can register this provider by calling Security.addProvider(new Blake2bProvider());.
Blake2bProvider exposes following digest functions
BLAKE2B-160BLAKE2B-256BLAKE2B-384BLAKE2B-512
<dependency>
<groupId>com.rfksystems</groupId>
<artifactId>blake2b</artifactId>
<version>${blake2b.version}</version>
</dependency>Apache License, Version 2.0