aboutsummaryrefslogtreecommitdiff
path: root/src/modules/extra/m_argon2.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2023-04-281-1/+1
|
* Work around a bug in reading the config for the Argon2 module.Gravatar Sadie Powell2023-01-251-0/+3
| | | | | | | | | | ProviderConfig::version is set to an argon2 version not a base 10 version so using it as a default for the config may result in the default being ignored. Luckily 0x10 and 0x12 are 16 and 18 respectively so we can just allow them as valid values until v4 where we can eradicate the SanitiseArgon2Version function and use getEnum instead.
* Update copyright headers.Gravatar InspIRCd Robot2022-08-251-0/+1
|
* Fix the argon2 package name on newer versions of Debian.Gravatar Sadie Powell2022-05-061-1/+1
|
* Update copyright headers.Gravatar InspIRCd Robot2021-02-261-0/+1
|
* Fix default linker flags in libargon2Gravatar Elizabeth Myers2020-12-031-1/+1
| | | It's -largon2, not -llibargon2. I've experienced build failures due to this.
* Fixes by misspell-fixerGravatar InspIRCd Robot2020-10-151-1/+1
|
* Implement support for Argon2 password hashing.Gravatar ShutterQuick2020-10-101-0/+214
Resolves #1540.