alphazero / Blake2b

Java implementation of the BLAKE2b cryptographic hash function
Other
79 stars 22 forks source link

Release on Maven #5

Open Mythra opened 5 years ago

Mythra commented 5 years ago

Is there any plans to release this library on maven-central so it's easy to include in your project? This is the only blake2 java implementation I can find mentioned on: https://blake2.net/ , Is there a better project I should be looking to for prod like applications?

alphazero commented 5 years ago

Not yet. It is a one file library and is not a moving target so you can just add it. I will consider adding it to Maven Central as a todo. Thanks for the suggestion.

If you want maximal Blake2b performance (equiv/faster than MD5 on JVM) the unsafe branch of this repo should be your choice.

Bouncy Castle's crypto lib includes their implementation (based on https://github.com/Beloumi/Crypto-Eck) of Blake2b. If you don't care for performance, you should use that.