Scrypt icon indicating copy to clipboard operation
Scrypt copied to clipboard

A .NET implementation of scrypt password hash algorithm.

Results 6 Scrypt issues
Sort by recently updated
recently updated
newest added

This pull request closes #12 by exposing a static method to perform header based and stateless encoding for passwords. I exposed the `SaltLength` field as a `public static readonly` field...

Current Functionality: The class allows the caller to specify some header information such as iteration count, block size, and thread count, but not the salt. This makes it unusable for...

.NETCore already has hardware accelerated types (System.Numerics.Vectors) which should work cross platform - I believe functions like Salsa will be able to take advantage of that, correct me if I...

enhancement

Hi @viniciuschiele I know the `CryptoScrypt` method is already public on the `master`, but it is not released on nuget. Can we please have a release on the latest master?

This PR adds the [scrypt test vectors from RFC 7914](https://datatracker.ietf.org/doc/html/rfc7914#section-12) and does some other minor adjustments: * updates the test project's target framework to 4.8 * slightly adjusts other tests...

If I understand it correctly, the essential logic (class `ScryptEncoder`) was created with [commit f68083b](https://github.com/viniciuschiele/Scrypt/commit/f68083b71acf98c3c7024e692811f05f21d04357) on 2014-11-14. After that (if I look at the individual commits) only a few minor...