Argon2id - Ruby bindings to the OWASP recommended password-hashing function
Ruby bindings to Argon2, the password-hashing function that won the 2015 Password Hashing Competition.
Current version: 0.7.0
Bundled Argon2 version: libargon2.1 (20190702)
Argon2id::Password.create("password").to_s
#=> "$argon2id$v=19$m=19456,t=2,p=1$agNV6OfDL1OwE44WdrFCJw$ITrBwvCsW4b5GjgZuL67RCcvVMEWBWXtASc9TVyI3rY"
password = Argon2id::Password.new("$argon2id$v=19$m=19456,t=2,p=1$ZS2nBFWBpnt28HjtzNOW4w$SQ+p+dIcWbpzWpZQ/ZZFj8IQkyhYZf127U4QdkRmKFU")
password == "password" #=> true
password == "not password" #=> false
password.m_cost #=> 19456
password.salt #=> "e-\xA7\x04U\x81\xA6{v\xF0x\xED\xCC\xD3\x96\xE3"
Table of contents
Why Argon2id?
Argon2 is a password-hashing function that summarizes the state of the art in the design of memory-hard functions and can be used to hash passwords for credential storage, key derivation, or other applications.
It has a simple design aimed at the highest memory filling rate and effective use of multiple computing units, while still providing defense against tradeoff attacks (by exploiting the cache and memory organization of the recent processors).
— Argon2
Argon2 was the winner of the 2015 Password Hashing Competition. Out of the three Argon2 versions, use the Argon2id variant since it provides a balanced approach to resisting both side-channel and GPU-based attacks.
— OWASP Password Storage Cheat Sheet
See also argon2-cffi's "Why 'just use bcrypt' Is Not the Best Answer (Anymore)".
Usage
Install argon2id as a dependency:
# In your Gemfile
gem "argon2id"
# Or without Bundler
gem install argon2id
Include in your code:
require "argon2id"
Hashing passwords
Hash a plain text password (e.g. from user input) with
Argon2id::Password.create
:
password = Argon2id::Password.create("opensesame")
The encoded value of the resulting hash is available via
Argon2id::Password#to_s
(ideal for persisting somewhere):
password.to_s
#=> "$argon2id$v=19$m=19456,t=2,p=1$ZS2nBFWBpnt28HjtzNOW4w$SQ+p+dIcWbpzWpZQ/ZZFj8IQkyhYZf127U4QdkRmKFU"
By default, Argon2id::Password.create
will use the second set of parameters
recommended by OWASP but these can be
overridden by passing keyword arguments to Argon2id::Password.create
:
t_cost
: the "time cost" given as a number of iterations (defaults to 2)m_cost
: the "memory cost" given in kibibytes (defaults to 19 mebibytes)parallelism
: the number of threads and compute lanes to use (defaults to 1)salt_len
: the salt size in bytes (defaults to 16)output_len
: the desired length of the hash in bytes (defaults to 32)
password = Argon2id::Password.create("opensesame", t_cost: 3, m_cost: 12288)
password.to_s
#=> "$argon2id$v=19$m=12288,t=3,p=1$uukIsLS6y6etvsgoN20kVg$exMvDX/P9exvEPmnZL2gZClRyMdrnqjqyysLMP/VUWA"
If you want to override the parameters for all calls to
Argon2id::Password.create
, you can set them on Argon2id
directly:
Argon2id.t_cost = 3
Argon2id.m_cost = 12288
Argon2id.parallelism = 1
Argon2id.salt_len = 16
Argon2id.output_len = 32
Verifying passwords
To verify a password against a hash, use Argon2id::Password#==
:
password = Argon2id::Password.create("opensesame")
password == "opensesame" #=> true
password == "notopensesame" #=> false
Or, if you only have the encoded hash (e.g. retrieved from storage):
password = Argon2id::Password.new("$argon2id$v=19$m=19456,t=2,p=1$ZS2nBFWBpnt28HjtzNOW4w$SQ+p+dIcWbpzWpZQ/ZZFj8IQkyhYZf127U4QdkRmKFU")
password == "opensesame" #=> true
password == "notopensesame" #=> false
[!WARNING]
Argon2id::Password.new
does not support hashes generated from other Argon2 variants such as Argon2i and Argon2d.
For compatibility with bcrypt-ruby, Argon2id::Password#==
is aliased to Argon2id::Password.is_password?
:
password = Argon2id::Password.new("$argon2id$v=19$m=19456,t=2,p=1$ZS2nBFWBpnt28HjtzNOW4w$SQ+p+dIcWbpzWpZQ/ZZFj8IQkyhYZf127U4QdkRmKFU")
password.is_password?("opensesame") #=> true
password.is_password?("notopensesame") #=> false
[!CAUTION]
Argon2id::Password#==
only works if the plain text password is on the right, e.g. the following behaviour may be surprising:password = Argon2id::Password.create("password") password == "password" #=> true "password" == password #=> false password == password #=> false
If you want to avoid this ambiguity, prefer the
Argon2id::Password#is_password?
alias instead.
The various parts of the encoded hash can be retrieved:
password = Argon2id::Password.new("$argon2id$v=19$m=256,t=2,p=1$c29tZXNhbHQ$nf65EOgLrQMR/uIPnA4rEsF5h7TKyQwu9U1bMCHGi/4")
password.version #=> 19
password.m_cost #=> 256
password.t_cost #=> 2
password.parallelism #=> 1
password.salt #=> "somesalt"
password.output
#=> "\x9D\xFE\xB9\x10\xE8\v\xAD\x03\x11\xFE\xE2\x0F\x9C\x0E+\x12\xC1y\x87\xB4\xCA\xC9\f.\xF5M[0!\xC6\x8B\xFE"
Validating encoded hashes
If you need to check ahead of time whether an encoded password hash is a valid Argon2id hash (e.g. if you're migrating between hashing functions and need to test what kind of password has been stored for a user), you can use Argon2id::Password.valid_hash?
like so:
Argon2id::Password.valid_hash?("$argon2id$v=19$m=65536,t=2,p=1$c29tZXNhbHQ$CTFhFdXPJO1aFaMaO6Mm5c8y7cJHAph8ArZWb2GRPPc")
#=> true
Argon2id::Password.valid_hash?("$2a$12$stsRn7Mi9r02.keRyF4OK.Aq4UWOU185lWggfUQfcupAi.b7AI/nS")
#=> false
Errors
Any errors returned from Argon2 will be raised as Argon2id::Error
, e.g.
Argon2id::Password.create("password", salt_len: 0)
# Salt is too short (Argon2id::Error)
Requirements
This gem requires any of the following to run:
- Ruby 2.6 to 3.3
- JRuby 9.4
- TruffleRuby 24.1
[!NOTE] The JRuby version of the gem uses JRuby-OpenSSL's implementation of Argon2 while the others use the reference C implementation.
Native gems
Where possible, a pre-compiled native gem will be provided for the following platforms:
- Linux
aarch64-linux
andarm-linux
(requires glibc 2.29+)x86-linux
andx86_64-linux
(requires glibc 2.17+)- musl-based systems such as Alpine are supported as long as a glibc-compatible library is installed
- macOS
x86_64-darwin
andarm64-darwin
- Windows
x64-mingw32
andx64-mingw-ucrt
- Java: any platform running JRuby 9.4 or higher
Verifying the gems
SHA256 checksums are included in the release
notes for each version and can be
checked with sha256sum
, e.g.
$ gem fetch argon2id -v 0.6.0
Fetching argon2id-0.6.0-arm64-darwin.gem
Downloaded argon2id-0.6.0-arm64-darwin
$ sha256sum argon2id-0.6.0-arm64-darwin.gem
18f1f04be4b5e7badb4d491762e57874febeeb46c64ce1b0a5e3a75b39b5baeb argon2id-0.6.0-arm64-darwin.gem
GPG signatures are attached to each release (the
assets ending in .sig
) and can be verified if you import our signing key
0x39AC3530070E0F75
(or fetch it
from a public keyserver, e.g. gpg --keyserver keyserver.ubuntu.com --recv-key
0x39AC3530070E0F75
):
$ gpg --verify argon2id-0.6.0-arm64-darwin.gem.sig argon2id-0.6.0-arm64-darwin.gem
gpg: Signature made Tue 5 Nov 11:30:47 2024 GMT
gpg: using RSA key 702609D9C790F45B577D7BEC39AC3530070E0F75
gpg: Good signature from "Paul Mucur <[email protected]>" [unknown]
gpg: aka "Paul Mucur <[email protected]>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg: There is no indication that the signature belongs to the owner.
Primary key fingerprint: 7026 09D9 C790 F45B 577D 7BEC 39AC 3530 070E 0F75
The fingerprint should be as shown above or you can independently verify it with the ones shown in the footer of https://mudge.name.
Installing the ruby
platform gem
[!WARNING] We strongly recommend using the native gems where possible to avoid the need for compiling the C extension and its dependencies which will take longer and be less reliable.
If you wish to compile the gem, you will need to explicitly install the ruby
platform gem:
# In your Gemfile with Bundler 2.3.18+
gem "argon2id", force_ruby_platform: true
# With Bundler 2.1+
bundle config set force_ruby_platform true
# With older versions of Bundler
bundle config force_ruby_platform true
# Without Bundler
gem install argon2id --platform=ruby
You will need a full compiler toolchain for compiling Ruby C extensions (see Nokogiri's "The Compiler Toolchain") plus the toolchain required for compiling the vendored version of Argon2.
Thanks
- Thanks to Mike Dalessio for his advice and Ruby C Extensions Explained project
Contact
All issues and suggestions should go to GitHub Issues.
License
This library is licensed under the BSD 3-Clause License, see LICENSE
.
Copyright © 2024, Paul Mucur.
Dependencies
The source code of Argon2 is distributed in the gem. This code is copyright © 2015 Daniel Dinu, Dmitry Khovratovich (main authors), Jean-Philippe Aumasson and Samuel Neves, and dual licensed under the CC0 License and the Apache 2.0 License.