Skip to content

Commit

Permalink
Update package structure
Browse files Browse the repository at this point in the history
Update version v0.3.0
  • Loading branch information
patrickfav committed Oct 3, 2017
1 parent a8cc719 commit ce526ba
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 8 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Releases

## v1.0.0
## v0.3.0

* refactor 'expand' byte handling to use byte buffer
* rename package to `at.favre.lib.crypto`


## v0.2.1
Expand Down
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

<groupId>at.favre.lib</groupId>
<artifactId>hkdf</artifactId>
<version>0.2.1</version>
<version>0.3.0</version>
<packaging>jar</packaging>

<name>HKDF-RFC5869</name>
<description>A standalone Java implementation of HMAC-based key derivation function (HKDF) defined in RFC 5869 first
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package at.favre.crypto;
package at.favre.lib.crypto;

import javax.crypto.Mac;
import java.nio.ByteBuffer;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package at.favre.crypto;
package at.favre.lib.crypto;

import javax.crypto.Mac;
import javax.crypto.SecretKey;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package at.favre.crypto;
package at.favre.lib.crypto;

import org.apache.commons.lang3.RandomUtils;
import org.junit.Ignore;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package at.favre.crypto;
package at.favre.lib.crypto;

import org.apache.commons.lang3.RandomUtils;
import org.junit.Before;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package at.favre.crypto;
package at.favre.lib.crypto;

import org.junit.Test;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package at.favre.crypto;
package at.favre.lib.crypto;

import org.apache.commons.codec.binary.Hex;
import org.junit.Test;
Expand Down

0 comments on commit ce526ba

Please sign in to comment.