SimpleCrypto.net
SimpleCrypto.net copied to clipboard
Simple cryptography library that wraps complex hashing algorithms for quick and simple usage.
The project was remade using .net7 version and new NUnit versions, incorporated as dependencies for test project, a just kip all configurations and classes as close as possible to original
hi, i attempted to use SimpleCrypto.NET to generate hashes that are used on another platform (node) and found number of discrepancies (known password and salt should produce same results across...
First off, great library. Thanks so much for putting this together and for all the efforts I know must've gone into this. Noticed something interesting today. If running a comparison...
Is there a way to get the password value back, after having it encrypted?
Can you publish signed version to nuget, please?
A major issue is that you are pulling 64 bytes from deriveBytes, which is very expensive for almost no additional gain. You should be pulling a maximum of 20 bytes....
First of all i want to thank you for this great and clear implementation. I wanted you just to know that there is no point in having large salts. 16...
The compare function of PBKDF2 uses Math.Min to check which string is the shortest to prevent index out of bounds exceptions. However, if the two strings are not of an...
FYI, that RandomPasswordGenerator code you borrowed has a MASSIVE limitation. Because it seeds the Random() on each call, there are only 2 billion unique passwords that it will generate with...