From 6a25feaab4a3db1e8fc0c751a8ccea914cceb510 Mon Sep 17 00:00:00 2001 From: JianWeie Date: Sat, 18 Dec 2021 02:44:09 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E5=A4=8D=E3=80=91=E4=BF=AE?= =?UTF-8?q?=E5=A4=8DMD5=E5=AF=86=E7=A0=81=E5=8A=A0=E5=AF=86=E6=96=B9?= =?UTF-8?q?=E6=B3=95=E6=97=B6=E9=97=B4=E6=A0=BC=E5=BC=8F=E5=8C=96=E6=9C=89?= =?UTF-8?q?=E6=AF=AB=E7=A7=92=E9=80=A0=E6=88=90=E4=BB=8E=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=BA=93=E4=B8=AD=E8=AF=BB=E5=8F=96=E4=B8=8D=E4=B8=80=E6=A0=B7?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98=E3=80=82#I4MC01?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CoreCms.Net.Utility/Helper/CommonHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CoreCms.Net.Utility/Helper/CommonHelper.cs b/CoreCms.Net.Utility/Helper/CommonHelper.cs index 68cefb2..2bcd553 100644 --- a/CoreCms.Net.Utility/Helper/CommonHelper.cs +++ b/CoreCms.Net.Utility/Helper/CommonHelper.cs @@ -506,7 +506,7 @@ namespace CoreCms.Net.Utility.Helper /// public static string EnPassword(string password, DateTime createTime) { - var dtStr = createTime.ToString("yyyyMMddHHmmssfff"); + var dtStr = createTime.ToString("yyyyMMddHHmmss"); var md5 = Md5For32(password); var enPwd = Md5For32(md5 + dtStr); return enPwd;