@hackage argon21.3.0.1
Memory-hard password hash and proof-of-work function
Categories
License
BSD-3-Clause
Maintainer
Herbert Valerio Riedel <hvr@gnu.org>
Links
Versions
Installation
Dependencies (4)
- base >=4.8 && <4.18
- bytestring >=0.10.0.0 && <0.12.0.0
- deepseq >=1.4 && <1.5
- text-short >=0.1.2 && <0.2 Show all…
Dependents (2)
@hackage/intricacy, @hackage/keysafe
Package Flags
use-system-library
(off by default)
Link against system libargon2 library rather than using embedded copy of libargon2. See also pkg-config flag.
pkg-config
(on by default)
Use pkg-config(1) to discover system-library location & flags.
NOTE: This has an effect only when the use-system-library flag is also enabled.
non-optimised-c
(off by default)
Force use of non-optimised C routines on x86_64. Ineffective when use-system-library flag is active.
Argon2 is the key derivation function (KDF) selected as the winner of the Password Hashing Competition. The API exposed by this bindings provide access to the 3 specified variants
Argon2d(maximize resistance to GPU cracking attacks),Argon2i(optimized to resist side-channel attacks), andArgon2id(hybrid version combiningArgon2dandArgon2i)
and allows to control various parameters (time cost, memory cost, parallelism) of the Argon2 function. Moreover, it is also supported to generate and verify the deprecated version 1.0 hashes, as well as the current version 1.3 hashes.
The Haskell API supports both raw binary hashes as well as the ASCII-based PHC string format.
This version provides bindings to the "20171227" release of the Argon2 reference implementation (libargon2) of the Argon2 password-hashing function.
Please refer to the Argon2 specification for more information.