Releases: amdelamar/jhash
Jhash v2.2.0
Jhash v2.1.2
βοΈ Re-license to Apache License 2.0 #19
βοΈ Add Apache commons-codec dependency for Base64
βοΈ Fix bcrypt revision support (a/b/y), now outputs $2y$...
format. #27
βοΈ Fix bcrypt with factor < 10 values, (e.g. .factor(9)
will work now) #10
βοΈ More unit tests and cleaned up HashTest assertions
Also:
- Replaced Travis with Drone (CI testing)
- Updated to Gradle 5.0 (Builds)
- Updated to Osseous 3.0.0 (Docs styling)
Jhash v2.1.0
This version includes:
βοΈ 90% code coverage
βοΈ Published to JCenter
βοΈ Package renamed from com.austindelamar
to com.amdelamar
βοΈ More unit tests
Jhash v2.0.0
This version includes:
βοΈ New Builder pattern Hash.password(pwd).create()
βοΈ Better documentation, Codacy score
βοΈ Allow variable salt lengths, default 24 bytes
βοΈ Fix Bcrypt to be compatible with standard formula 16 byte salts
βοΈ More unit tests.
Jhash v1.1.0
This version includes:
βοΈ Better documentation, Jitpack, CodeCov
βοΈ Hash class with more randomSalt()
options
βοΈ Use of Type enum instead of String (e.g. Type.BCRYPT)
βοΈ More unit tests.
Jhash v1.0.0
The first release of Jhash! π
This version includes:
βοΈ PBKDF2 - 64000 iterations as default (SHA1, SHA256, SHA512).
βοΈ Bcrypt - 13 logrounds as default.
βοΈ Scrypt - 131072 cpu/mem cost as default.
βοΈ Hash class with easy create()
and verify()
methods.
βοΈ Plenty of unit tests!