cm-cloud/cloud-security/src/test/java/com/cm/LicenseTest.java
2019-11-12 17:28:07 +08:00

45 lines
1.4 KiB
Java
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.cm;
import com.cm.security.License;
import com.cm.security.utils.AddressUtil;
import com.cm.security.utils.AesUtil;
import org.junit.Test;
/**
* @author Administrator
* @version 1.0
* @className LicenseTest
* @description TODO
* @date 2018/11/20 14:46
*
**/
public class LicenseTest {
public void licenseTest() throws Exception {
// 3C-A0-67-4A-88-D2
// 巴盟三务公开6C-92-BF-4F-07-0D
// 包头东河三务公开00-16-3E-00-62-F6
// 通用 00-16-3E-00-79-58
// 乌海海勃湾区 50-AF-73-27-2E-B2
String mac = AddressUtil.getMacAddress();
System.out.println(mac);
String license = License.getLicense("2019-10-10", "50", "50-AF-73-27-2E-B2", "CMXX0471");
System.out.println(license);
}
public void licenseTimeTest() {
System.out.println(License.checkLicense("CMXX0471", "OFZRQ2JDU2lCelgwcUozaUpWL3ROZWw2Y3VsbXhrOGhCMDNDYXN3am5RWHBlbkxwWnNaUElRZE53bXJNSTUwRldRbFdiQ3JnRFoxNlJlcXpkdUxwUHhSQm9RcVFlV2pLZ1lOU2tkemNUb3lsR1l4UTRvbnBmckVEWGdRUFJkWEc="));
}
public void aesTest() throws Exception {
String encode = AesUtil.aesEncoder("CMXX", "123");
//String decode = AesUtil.aesDecoder("ABCDEFGHIJKLMNRS", "vqZ8mVpLg2RqdPML+9tPxma3NrQDO/pECXWvUr/RIHE=");
System.out.println(encode);
//System.out.println(decode);
}
public void webServiceTest() {
}
}