From 1ca591d2d5f0824cf8d9afe96bb07009592e47dc Mon Sep 17 00:00:00 2001
From: 付智勇 <fuzhiyong@efangtec.com>
Date: Wed, 30 Aug 2017 20:26:46 +0800
Subject: [PATCH] no message

---
 util/saltMD5.js | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+), 0 deletions(-)
 create mode 100644 util/saltMD5.js

diff --git a/util/saltMD5.js b/util/saltMD5.js
new file mode 100644
index 0000000..c3a233b
--- /dev/null
+++ b/util/saltMD5.js
@@ -0,0 +1,24 @@
+const key="3mang";
+const crypto = require('crypto');
+module.exports={
+		md5AddSalt:function(password){
+			var salt=Math.floor(Math.random()*100);
+			var decipher = crypto.createHash('md5',key);
+			var md5Pass=decipher.update(password+""+salt).digest("hex");
+			return {
+				salt:salt,
+				md5Pass:md5Pass
+			};
+		},
+		md5:function(password){
+			var md5Pass = crypto.createHash('md5').update(password).digest("hex");
+			return md5Pass
+		},
+		md5Salt:function(password,salt){
+      if(salt == null){
+        salt = '';
+      }
+			var decipher = crypto.createHash('md5',key);
+			return decipher.update(password+salt).digest("hex");
+		}
+};
\ No newline at end of file
--
libgit2 0.24.0