1234567891011121314151617 |
- package com.gxzc.zen.api
- import org.apache.shiro.crypto.hash.SimpleHash
- import org.junit.Test
- /**
- *
- * @author NorthLan
- * @date 2018/4/24
- * @url https://noahlan.com
- */
- class PasswordGen {
- @Test
- fun genPassword() {
- println(SimpleHash("md5", "123456", "admin" + "kidntkdij", 2))
- }
- }
|