Skip to content

Commit

Permalink
Remove obsolete maven dependencies that were incorrectly not in test …
Browse files Browse the repository at this point in the history
…scope.

Update version to 0.4.3
  • Loading branch information
patrickfav committed Oct 4, 2017
1 parent bf75b42 commit dbc7374
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Releases

## v0.4.3

* remove obsolete maven dependencies

## v0.4.2

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

[Hashed Message Authentication Code](https://en.wikipedia.org/wiki/Hash-based_message_authentication_code) (HMAC)-based key derivation function ([HKDF](https://en.wikipedia.org/wiki/HKDF)), can be used as a building block in various protocols and applications. The [key derivation function](https://en.wikipedia.org/wiki/Key_derivation_function) (KDF) is intended to support a wide range of applications and requirements, and is conservative in its use of [cryptographic hash functions](https://en.wikipedia.org/wiki/Cryptographic_hash_function). It is likely to have [better security properties](https://crypto.stackexchange.com/questions/13232/how-is-hkdf-expand-better-than-a-simple-hash) than KDF's based on just a hash functions alone. See [RFC 5869](https://tools.ietf.org/html/rfc5869) for full detail.

This is supposed to be a standalone, lightweight, simple to use, fully tested and stable implementation in Java. The code is compiled with [Java 7](https://en.wikipedia.org/wiki/Java_version_history#Java_SE_7) to be compatible with most [_Android_](https://www.android.com/) versions as well as normal Java applications.

[![Download](https://api.bintray.com/packages/patrickfav/maven/hkdf/images/download.svg)](https://bintray.com/patrickfav/maven/hkdf/_latestVersion)
[![Build Status](https://travis-ci.org/patrickfav/hkdf.svg?branch=master)](https://travis-ci.org/patrickfav/hkdf)
[![Javadocs](https://www.javadoc.io/badge/at.favre.lib/hkdf.svg)](https://www.javadoc.io/doc/at.favre.lib/hkdf)
[![Coverage Status](https://coveralls.io/repos/github/patrickfav/hkdf/badge.svg?branch=master)](https://coveralls.io/github/patrickfav/hkdf?branch=master)

This is supposed to be a standalone, lightweight, simple to use, fully tested and stable implementation in Java. The code is compiled with [Java 7](https://en.wikipedia.org/wiki/Java_version_history#Java_SE_7) to be compatible with most [_Android_](https://www.android.com/) versions as well as normal Java applications.

## Quickstart

Add dependency to your `pom.xml`:
Expand Down
8 changes: 5 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@

<groupId>at.favre.lib</groupId>
<artifactId>hkdf</artifactId>
<version>0.4.2</version>
<version>0.4.3</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
described by Hugo Krawczyk. It is special as it supports 2 Phases: Extract and Expand.
described by Hugo Krawczyk. HKDF follows the "extract-then-expand" paradigm.
</description>
<url>https://github.com/patrickfav/hkdf</url>
<inceptionYear>2017</inceptionYear>
Expand Down Expand Up @@ -124,7 +124,7 @@
</execution>
</executions>
<configuration>
<skip>false</skip> <!-- set this to true if fail because of missing credentials -->
<skip>true</skip> <!-- set this to true if fail because of missing credentials -->
<keystore>keystore.jks</keystore>
<alias>pfopensource</alias>
<storepass>${env.OPENSOURCE_PROJECTS_KS_PW}</storepass>
Expand Down Expand Up @@ -167,11 +167,13 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.10</version>
<scope>test</scope>
</dependency>
</dependencies>
<developers>
Expand Down

0 comments on commit dbc7374

Please sign in to comment.