Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.NET implementation of scrypt

I've read about scrypt and some of its advantages over the bcrypt hashing algorithm in certain circumstances.

Anyhow, it seems scrypt isn't as widely used yet. Has anyone seen so far a .NET implementation of it (favored in C#)?

like image 882
Martin Buberl Avatar asked Jan 30 '11 22:01

Martin Buberl


1 Answers

Finally I found an implementation of scrypt in C# in the CryptSharp library.
The library is open source and uses the ISC license.

  • CryptSharp

Version History

1.2.0 January 23, 2011:
The SCrypt KDF is now supported as CryptSharp.Utility.SCrypt.
Added djb's Salsa20, required by SCrypt.

like image 135
Martin Buberl Avatar answered Sep 19 '22 10:09

Martin Buberl