|
@@ -0,0 +1,12 @@
|
|
|
|
+package com.miniframe;
|
|
|
|
+
|
|
|
|
+import com.miniframe.service.LoginService;
|
|
|
|
+
|
|
|
|
+public class Password {
|
|
|
|
+ public static void main(String[] args) throws Exception {
|
|
|
|
+ String userId = "f7e927255720489dbfe7d04bc6680946";
|
|
|
|
+ String password_ ="123456";
|
|
|
|
+ String pwd =LoginService.encodePassword(userId, password_);
|
|
|
|
+ System.out.println(pwd);
|
|
|
|
+ }
|
|
|
|
+}
|