Skip to content

Releases: patrickfav/hkdf

v2.0.0 [BREAKING CHANGE]

11 Feb 22:20
v2.0.0
0647a8b
Compare
Choose a tag to compare
  • added module-info.java

Breaking Change

In order to avoid split package problems, we renamed this lib's main package at.favre.lib.crypto -> at.favre.lib.hkdf.

v1.1.0

13 Jun 17:40
v1.1.0
9567e15
Compare
Choose a tag to compare

Changes

  • refactor HkdfMacFactory to accept SecretKey types instead of byte array - helps to be compatible with some security frameworks #4

Breaking Change

The interface HkdfMacFactory changed to accept SecretKey and two new methods where added for creating
a secret key from a raw byte source and to return the mac length in bytes. See the default implementation
for details on how to implement this if you need a custom impl.

v1.0.2

26 Jan 20:17
v1.0.2
0fcbf0b
Compare
Choose a tag to compare

Minor Changes

  • add OSWAP dependency check plugin to Maven POM #3
  • update maven plugins and test dependencies

Note: This will probably be the last release supporting Java 7

v1.0.1

26 Nov 21:11
v1.0.1
5cd6193
Compare
Choose a tag to compare

Minor Changes

  • update maven plugins and test dependencies
  • switch to maven wrapper

v1.0.0

17 Nov 22:22
4289943
Compare
Choose a tag to compare

This is marked as the first fully stable release. It is basically v0.4.4 bumped to 1.0.0

Minor Changes

  • add checkstyle rules

v0.4.4

01 Nov 15:04
bf8ecea
Compare
Choose a tag to compare
  • fix signed jar

v0.4.3

04 Oct 11:33
dbc7374
Compare
Choose a tag to compare
  • remove obsolete maven dependencies

v0.4.2

03 Oct 10:35
fa431a3
Compare
Choose a tag to compare
  • make mac factory public

v0.4.1

03 Oct 10:22
18843eb
Compare
Choose a tag to compare
  • some small bugfixes

v0.4.0

03 Oct 09:35
cd31ee0
Compare
Choose a tag to compare
  • change api from extract(ikm,salt) to a more RFC compliant extract(salt,ikm) (also extractAndExpand())