Releases: thibaultcha/lua-argon2-ffi
Releases · thibaultcha/lua-argon2-ffi
3.0.1
3.0.0
Note: This module's version was bumped to 3.0.0
to reflect the
interoperability of its API with the lua-argon2 implementation. In the future,
lua-argon2 and lua-argon2-ffi will continue sharing the same version number
for similar versions.
Changed
⚠️ This version is only compatible with Argon2
20160406
and later.⚠️ Renamed theencrypt()
function tohash_encoded()
, in order to
carry a stronger meaning and to eventually implement ahash_raw()
function
in the future.- New
variants
field with supported Argon2 encoding variants (as userdatum).
See documentation and the "Added" section of this Changelog. - Updated the default hashing options to match those of the Argon2 CLI:
t_cost = 3
,m_cost = 4096
,parallelism = 1
,hash_len = 32
.