我试过跑
string cryptedPassword = Crypter.MD5.Crypt(Passwort, new CrypterOptions()
{
{CrypterOption.Variant, MD5CrypterVariant.Apache}
});
但我似乎无法运行它。
Passwort
是一个随机的 5 字符字符串
我有这个代码:
using System; using CryptSharp;
using System.IO;
using System.Security.Cryptography;
但不断遇到错误:
Crypter 没有 MD5 的定义
MD5CrypterVariant 不可用
我错过了什么?
提前致谢