-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Argon2 #150
base: develop
Are you sure you want to change the base?
Conversation
Signed-off-by: Mattias Andrée <[email protected]>
Codecov ReportPatch coverage has no change and project coverage change:
Additional details and impacted files@@ Coverage Diff @@
## develop #150 +/- ##
===========================================
+ Coverage 88.58% 91.46% +2.87%
===========================================
Files 32 10 -22
Lines 3618 527 -3091
Branches 690 86 -604
===========================================
- Hits 3205 482 -2723
+ Misses 228 25 -203
+ Partials 185 20 -165 ☔ View full report in Codecov by Sentry. |
doc/crypt.5
Outdated
.Ss argon2_d | ||
argon2_d is one of the variants of Argon2 key derivation functions that won | ||
the Password Hashing Competition 2015. argon2d is designed for environments | ||
taht are safe from side-channel attacks. Acceptable for new hashes, but |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo
doc/crypt.5
Outdated
.Ss argon2_i | ||
argon2_i is one of the variants of Argon2 key derivation functions that won | ||
the Password Hashing Competition 2015. argon2i is designed for environments | ||
taht are not safe from side-channel attacks. Acceptable for new hashes, but |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same typo as above
Signed-off-by: Mattias Andrée <[email protected]>
Dependencies:
Compatible with the reference implementation of Argon2, but it also supports (not documented; libar2simplified adds this) replacing the salt or hash with their length encoded as asterisk-prefixed, decimal integers; if this is done with the salt, a random salt is generated.