I've tried to run
string cryptedPassword = Crypter.MD5.Crypt(Passwort, new CrypterOptions()
{
{CrypterOption.Variant, MD5CrypterVariant.Apache}
});
from the cryptsharp documentation
But I don't seem to be able to run it.
Passwort
is a random 5 char string
I have this code:
using System; using CryptSharp;
using System.IO;
using System.Security.Cryptography;
but keep running into errors:
Crypter has no definition for MD5
MD5CrypterVariant not available
What am I missing ?
Thanks in advance