摘要: dotnet WzhTest.dll --urls="http://*:8888" 如果报错: 以一种访问权限不允许的方式做了一个访问套接字的尝试 就是端口被占用,进入windows中的命令行窗口,输入 netstat -ano|findstr 8888,查看商品谁占用了,我们终止这个进程就可以了, 阅读全文
posted @ 2021-06-27 01:37 lunawzh 阅读(271) 评论(0) 推荐(0) 编辑
摘要: public static string UseMd5(string str) { using (MD5 mi = MD5.Create()) { byte[] buffer = Encoding.Default.GetBytes(str.Trim()); //开始加密 byte[] newBuff 阅读全文
posted @ 2021-06-27 01:28 lunawzh 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 发现加密后有时对有时错,有时31位有是30位, public static string UserMd5(string str) { string cl = str.Trim(); string pwd = ""; MD5 md5 = MD5.Create();//实例化一个md5对像 // 加密后 阅读全文
posted @ 2021-06-27 00:57 lunawzh 阅读(293) 评论(0) 推荐(0) 编辑