This implements Argon2id password hashing and password/hash comparison.
Only has 2 actions:
Based on sample code form here:https://www.thatsoftwaredude.com/content/14030/implementing-argon2id-password-hashing-in-c
(Yes, I Bought him a coffee. If you find this useful, might be worth buying him one too.)
The main change from his code is that I had to copy the code in for CryptographicOperations.FixedTimeEquals because it's only available in DOT.NET Core for some bizarre reason.
This implements Argon2Id password hashing and password/hash comparison.
Based on sample code from here:https://www.thatsoftwaredude.com/content/14030/implementing-argon2id-password-hashing-in-c
Yes, I Bought him a coffee. If you find this useful, if you can, please buy him one too.
The main change from his code is that I had to copy the code in for FixedTimeEquals because it's only available in DOT.NET Core for some bizarre reason.