Skip to content

Commit

Permalink
Updated bcrypt dependency to a more maintained fork
Browse files Browse the repository at this point in the history
  • Loading branch information
drobakowski committed Feb 10, 2014
1 parent 9093466 commit b9108e6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Erlpass #

A library to handle password hashing and changing in a safe manner, independent from any kind of storage whatsoever. The library is a thin wrapper around the erlang-bcrypt library from smarkets, handling special cases such as unicode passwords, and forcing hashes in binary. Moreover, the library takes care of providing common operations such as matching passwords, changing the work factor of a hash, or changing a password as a whole.
A library to handle password hashing and changing in a safe manner, independent from any kind of storage whatsoever. The library is a thin wrapper around the erlang-bcrypt library from opscode, handling special cases such as unicode passwords, and forcing hashes in binary. Moreover, the library takes care of providing common operations such as matching passwords, changing the work factor of a hash, or changing a password as a whole.

## Build Instructions ##

Expand Down
2 changes: 1 addition & 1 deletion doc/overview.edoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
The idea behind the library is to handle password hashing and changing in a
safe manner, independent from any kind of storage whatsoever.

The library is a thin wrapper around the erlang-bcrypt library from smarkets,
The library is a thin wrapper around the erlang-bcrypt library from opscode,
handling special cases such as unicode passwords, and forcing hashes in binary.
Moreover, the library takes care of providing common operations such as
matching passwords, changing the work factor of a hash, or changing a password
Expand Down
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{lib_dirs, ["deps"]}.

{deps, [{bcrypt, "0.5.0", {git, "https://github.com/smarkets/erlang-bcrypt.git", {tag, "0.5.0"}}}]}.
{deps, [{bcrypt, "0.5.*", {git, "https://github.com/opscode/erlang-bcrypt.git", {tag, "0.5.0.3"}}}]}.

2 changes: 1 addition & 1 deletion rebar.test.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{lib_dirs, ["deps"]}.

{deps, [{proper, "1.1", {git, "https://github.com/manopapad/proper.git", {tag, "v1.1"}}},
{bcrypt, "0.5.0", {git, "https://github.com/smarkets/erlang-bcrypt.git", {tag, "0.5.0"}}}]}.
{bcrypt, "0.5.*", {git, "https://github.com/opscode/erlang-bcrypt.git", {tag, "0.5.0.3"}}}]}.

0 comments on commit b9108e6

Please sign in to comment.