java110
2022-03-01 4ba3f994d013286f20285249fede34c8a6438c91
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"));
    }
 
}