java110
2022-01-17 c453f5a9c2c6e78d7b886a16a0bc3fe6ca8ef3e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.java110.core.factory;
 
import org.junit.Test;
 
import static org.junit.Assert.*;
 
/**
 * Created by wuxw on 2019/3/20.
 */
public class AuthenticationFactoryTest {
    @Test
    public void passwdMd5() throws Exception {
        System.out.println(AuthenticationFactory.passwdMd5("admin"));
    }
 
}