Liking cljdoc? Tell your friends :D

User Guide

buddy-hashers provides a collection of secure password hashers with lightweight and extensible abstraction for build powerfull password authentication processes.

Supported password hashers algorithms:

IdentifierCan I use it?Description
:bcrypt+blake2b-512RecommendedBCrypt password hasher combined with blake2b-512
:argon2idRecommendedArgon2id password hasher
:pbkdf2+blake2b-512YesPassword-Based Key Derivation Function 2 with blake2b-512
:pbkdf2+sha512YesPassword-Based Key Derivation Function 2 with SHA256
:pbkdf2+sha3-256YesPassword-Based Key Derivation Function 2 with SHA3-256
:bcrypt+sha512YesBCrypt password hasher combined with sha512 (default)
:pbkdf2+sha256YesPassword-Based Key Derivation Function 2 with SHA256
:bcrypt+sha384YesBCrypt password hasher combined with sha384
:pbkdf2+sha1YesPassword-Based Key Derivation Function 2 (as defined in RFC2898)
:scryptYesPassword-Based Key Derivation Function created by Colin Percival
:argon2idYesMemory-Hard Key Derivation Function for password hashing and other applications

Install

The simplest way to use buddy-core in a clojure project, is by including it in the dependency vector on your project.clj file:

[buddy/buddy-hashers "1.7.0"]

Or deps.edn:

buddy/buddy-hashers {:mvn/version "1.7.0"}

And is tested under JDK >= 8

Quick Start

Hashers module consists in two public functions: derive and check and both them are located on buddy.hashers namespace.

Let start deriving a password:

(require '[buddy.hashers :as hashers])

;; Generate hash from plain password
(hashers/derive "secretpassword")
;; => "bcrypt+sha512$4i9sd34m..."

(hashers/verify "secretpassword" "bcrypt+sha512$4i9sd34m...")
;; => {:valid true :update false}

If no algorithm is specified, the :bcrypt+sha512 will be used by default. We highly recommend setting your own default for prevent any unexpected situations when the library changes the default.

If you want to use a specific one, you can specify it using the optional options parameter:

;; Generate hash from plain password
(hashers/derive "secretpassword" {:alg :pbkdf2+sha256})
;; => "pbkdf2+sha256$4i9sd34m..."

(hashers/verify "secretpassword" "pbkdf2+sha256$4i9sd34m...")
;; => {:valid true :update false}

Advanced options

Algorithm tunning params

Each algorithm can be tweaked passing additional parameters on the second argument to derive function. And options vary depending on the used algorithm.

Table that deails available options and their defaults:

AlgorithmAvailable optionsDefaults
:bcrypt+blake2b-512:salt, :iterationsiterations=12, salt=(random 16 bytes)
:bcrypt+sha384:salt, :iterationsiterations=12, salt=(random 16 bytes)
:pbkdf2+blake2b-512:salt, :iterationsiterations=50000, salt=(random 12 bytes)
:pbkdf2+sha512:salt, :iterationsiterations=100000, salt=(random 12 bytes)
:pbkdf2+sha3_256:salt, :iterationsiterations=100000, salt=(random 12 bytes)
:pbkdf2+sha1:salt, :iterationsiterations=100000, salt=(random 12 bytes)
:scrypt:salt, :cpucost, :memcost, :parallelismsalt=(random 12 bytes), cpucost=65536, memcost=8, parallelism=1
:bcrypt+sha512:salt, :iterationsiterations=12, salt=(random 12 bytes)
:pbkdf2+sha256:salt, :iterationsiterations=100000, salt=(random 12 bytes)
:argon2id:salt, :memory, :iterations, :parallelismsalt=(random 16 bytes), memory=65536, iterations=2, parallelism=1

Limiting algorithms

Some times you don't want to use all the supported algorithms and you only want to use a own set of algorithms in the password check process. That can be done passing additional parameter to the check function:

(def trusted-algs #{:pbkdf2+sha256 :bcrypt+sha512})

(hashers/verify incoming-pwd derived-pwd {:limit trusted-algs})

The verify function will return false if the incoming password uses an algorithm that does not allowed.

Password updating

Choice a strong algorithm is important thing, but have a good update password-hashes policy is also very important and usually completelly forgotten. The password generated 3 years ago is weaker that one generated today...

buddy-hashers comes with a solution for make this task easier. The returned object by the verify function contains a prop :update that indicates if the password should be updated or not.

It there is an example on how it can be used:

(let [result (hashers/verify incoming-pwd derived-pwd)]
  (when (:valid result)
    (when (:update result)
      (do-db-update (hashers/derive incoming-pwd)))))

Source Code

buddy-hashers is open source and can be found on github.

You can clone the public repository with this command:

git clone https://github.com/funcool/buddy-hashers

Run tests

For running tests just execute this:

lein test

License

buddy-hashers is licensed under Apache 2.0 License. You can see the complete text of the license on the root of the repository on LICENSE file.

See the documentation for more detailed information.

Can you improve this documentation? These fine people already did:
Andrey Antukh & akosilov
Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close