Royce Williams
Royce Williams
phpBB has merged support (but I'm not sure what releases it's part of): https://github.com/phpbb/phpbb/pull/5211
Python's PassLib supports Argon2 as of version 1.7.0 (2016): https://pythonhosted.org/passlib/lib/passlib.hash.argon2.html
The Laraval PHP framework supports Argon2: https://laravel.com/docs/8.x/hashing/ ... as does Symfony as of 3.4 (2017): https://symfony.com/blog/new-in-symfony-3-4-argon2i-password-hasher ... and Django (2017): https://code.djangoproject.com/ticket/26033
The Bouncy Castle Java crypto framework supports Argon2: https://www.bouncycastle.org/specifications.html
KeePass KDBX format version 4 supports Argon2: https://keepass.info/help/kb/kdbx_4.html
OpenLDAP supports Argon2 via a loadable module: https://manpages.debian.org/testing/slapd-contrib/slapd-pw-argon2.5.en.html
OpenSSL support for Argon2 is positioned to land "soon" - sometime after OpenSSL 3.0: https://github.com/openssl/openssl/issues/4091 https://github.com/openssl/openssl/pull/12256
There is an MIT-licensed OpenCL implementation here: https://gitlab.com/vojtapolasek/argon2-gpu
Hmm - I hadn't really thought about the cost of loading and shifting rulesets and dictionaries. I've been emulating it by dynamically constructing a single rules file, just as you're...
To clarify, I'm looking for the same effect as if I'd concatenated all of the rules into a single file, but without actually having to do that. Hashcat would read...