麻烦看看mysql表里的密码是用什么加密的

我想用c#winform写个注册、登陆、修改,该怎么写

第1个回答  2013-09-18
1。有点似 base64_encode的在C#里有对应的的函数

要么就是用 discuz 的 authcode 加密函数。你可以上DISCUZ官方网站。找到ASP.NET的加密函数。但前提,你必须要要知道它的密钥。
第2个回答  2013-09-18
decode(password,'加密字符')应该是这样加密的。
第3个回答  2013-09-18
string pwd = Convert.ToBase64String(new System.Security.Cryptography.SHA1CryptoServiceProvider().ComputeHash(Encoding.ASCII.GetBytes(txtPwd.Text.Trim())));
第4个回答  2016-07-29
password('密码')
第5个回答  2013-09-18
md5加密
相似回答