heimdall
heimdall copied to clipboard
Secure Password Storage
Heimdall - Secure Password Hashing
This library implements a secure and upgradeable password hashing mechanism. See this blog post for details.
Why not just use PBKDF2, scrypt, bcrypt, etc.?
Actually, this library uses (some of) these algorithms. But it makes it easier for you: no need to worry about iterations, salt generation and the same. And if a flaw is discovered in one of the algorithms, the library makes sure that the hashes in your database are automatically updated to a secure format (provided you use the pattern as shown in the usage block down below).
Usage
Dependencies
The JARs are available via JCenter and Maven Central. If you are using Maven to build your project, add the following to the pom.xml
file:
<dependencies>
<dependency>
<groupId>de.qaware.heimdall</groupId>
<artifactId>heimdall</artifactId>
<version>$LATEST_VERSION</version>
</dependency>
</dependencies>
In case you are using Gradle to build your project, add the following to the build.gradle
file:
repositories {
jcenter()
mavenCentral()
}
dependencies {
compile 'de.qaware.heimdall:heimdall:$LATEST_VERSION'
}
Replace $LATEST_VERSION
with the version from this badge:
Create a hash
Password password = PasswordFactory.create();
try(SecureCharArray cleartext = new SecureCharArray(...)) { // Read cleartext password from user
String hash = password.hash(cleartext);
// Persist the hash in a database etc...
}
Verify the hash
Password password = PasswordFactory.create();
String hash = ... // Load hash from persistent storage
try(SecureCharArray cleartext = new SecureCharArray(...)) { // Read cleartext password from user
if (password.verify(cleartext, hash)) {
if (password.needsRehash(hash)) { // Check if the hash uses an old hash algorithm, insecure parameters, etc.
String newHash = password.hash(cleartext);
// Persist the new hash in a database etc...
}
// Password is correct, proceed...
} else {
// Password is incorrect
}
}
Changes
Looking for a change log?
Technical details
By default this library uses the PBKDF2 SHA-1 HMAC (PBKDF2WithHmacSHA1
) with 20000 iterations and 192 bit (24 byte) of salt.
Useful resources
- Heimdall integration in Spring Security: https://gist.github.com/clboettcher/663bf04cf24ffb0e6e0791b32ee1dc7c
Maintainer
Moritz Kammerer (@phxql), [email protected]
Contributors
License
This software is provided under the MIT open source license, read the LICENSE.txt
file for details.