hjg
2024-01-20 4a3404efc438b16044fd9170814e6545a3f86fae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.mandi.system.test;
 
import org.junit.Test;
 
import com.mandi.common.BasicMethod;
 
/** 
 * @author mengly 
 * @version 创建时间:2015年8月30日 下午7:01:10 
 * 类说明 
 */
 
public class Pwdtest {
    @Test
    public void test1(){
        double prevalue = 0.0;
        System.out.println(BasicMethod.encryptSHA("123456"));//a8fa880168474cb0c5f65f66dfd39063dda15a058c2d0ed2da59d75355c14378
        System.out.println(prevalue==0);
    }
}