Title: | 'Blowfish' Key Derivation and Password Hashing |
---|---|
Description: | Bindings to the 'blowfish' password hashing algorithm <https://www.openbsd.org/papers/bcrypt-paper.pdf> derived from the 'OpenBSD' implementation. |
Authors: | Jeroen Ooms [aut, cre] , Damien Miller [cph] (blowfish algorithm), Niels Provos [cph] (py_bcrypt code) |
Maintainer: | Jeroen Ooms <[email protected]> |
License: | BSD_2_clause + file LICENSE |
Version: | 1.2.0 |
Built: | 2024-11-03 06:06:51 UTC |
Source: | https://github.com/jeroen/bcrypt |
Bcrypt is used for secure password hashing. The main difference with
regular digest algorithms such as MD5 or SHA256 is that the bcrypt
algorithm is specifically designed to be CPU intensive in order to
protect against brute force attacks. The exact complexity of the
algorithm is configurable via the log_rounds
parameter. The
interface is fully compatible with the Python one.
gensalt(log_rounds = 12, iv = openssl::rand_bytes(16)) hashpw(password, salt = gensalt()) checkpw(password, hash)
gensalt(log_rounds = 12, iv = openssl::rand_bytes(16)) hashpw(password, salt = gensalt()) checkpw(password, hash)
log_rounds |
integer between 4 and 31 that defines the complexity of
the hashing, increasing the cost as |
iv |
init vector to randomize the salt |
password |
the message (password) to encrypt |
salt |
a salt generated with |
hash |
the previously generated bcrypt hash to verify |
The hashpw
function calculates a hash from a password using
a random salt. Validating the hash is done by rehashing the password
using the hash as a salt. The checkpw
function is a simple
wrapper that does exactly this.
gensalt
generates a random text salt for use with hashpw
.
The first few characters in the salt string hold the bcrypt version number
and value for log_rounds
. The remainder stores 16 bytes of base64
encoded randomness for seeding the hashing algorithm.
# Secret message as a string passwd <- "supersecret" # Create the hash hash <- hashpw(passwd) hash # To validate the hash identical(hash, hashpw(passwd, hash)) # Or use the wrapper checkpw(passwd, hash) # Use varying complexity: hash11 <- hashpw(passwd, gensalt(11)) hash12 <- hashpw(passwd, gensalt(12)) hash13 <- hashpw(passwd, gensalt(13)) # Takes longer to verify (or crack) system.time(checkpw(passwd, hash11)) system.time(checkpw(passwd, hash12)) system.time(checkpw(passwd, hash13))
# Secret message as a string passwd <- "supersecret" # Create the hash hash <- hashpw(passwd) hash # To validate the hash identical(hash, hashpw(passwd, hash)) # Or use the wrapper checkpw(passwd, hash) # Use varying complexity: hash11 <- hashpw(passwd, gensalt(11)) hash12 <- hashpw(passwd, gensalt(12)) hash13 <- hashpw(passwd, gensalt(13)) # Takes longer to verify (or crack) system.time(checkpw(passwd, hash11)) system.time(checkpw(passwd, hash12)) system.time(checkpw(passwd, hash13))
Password based key derivation function with bcrypt.
pbkdf(password, salt, rounds = 16L, size = 32L)
pbkdf(password, salt, rounds = 16L, size = 32L)
password |
string or raw vector with password |
salt |
raw vector with (usually 16) bytes |
rounds |
number of hashing rounds |
size |
desired length of the output key |