package com.qunar.fresh;

import java.math.BigInteger;
import java.util.Date;
import java.util.Random;
import java.util.zip.CRC32; public class keygen14 { private static final int version=14; /**
* @param s
* @param i
* @param bytes
* @return
*/
public static short getCRC(String s, int i, byte bytes[]) {
CRC32 crc32 = new CRC32();
if (s != null) {
for (int j = 0; j < s.length(); j++) {
char c = s.charAt(j);
crc32.update(c);
}
}
crc32.update(i);
crc32.update(i >> 8);
crc32.update(i >> 16);
crc32.update(i >> 24);
for (int k = 0; k < bytes.length - 2; k++) {
byte byte0 = bytes[k];
crc32.update(byte0);
}
return (short) (int) crc32.getValue();
} /**
* @param biginteger
* @return String
*/
public static String encodeGroups(BigInteger biginteger) {
BigInteger beginner1 = BigInteger.valueOf(0x39aa400L);
StringBuilder sb = new StringBuilder();
for (int i = 0; biginteger.compareTo(BigInteger.ZERO) != 0; i++) {
int j = biginteger.mod(beginner1).intValue();
String s1 = encodeGroup(j);
if (i > 0) {
sb.append("-");
}
sb.append(s1);
biginteger = biginteger.divide(beginner1);
}
return sb.toString();
} /**
* @param i
* @return
*/
public static String encodeGroup(int i) {
StringBuilder sb = new StringBuilder();
for (int j = 0; j < 5; j++) {
int k = i % 36;
char c;
if (k < 10) {
c = (char) (48 + k);
} else {
c = (char) ((65 + k) - 10);
}
sb.append(c);
i /= 36;
}
return sb.toString();
} /**
* @param name
* @param days
* @param id
* @return
*/
public static String MakeKey(String name, int days, int id) {
id %= 100000;
byte bkey[] = new byte[12];
bkey[0] = (byte) 1; // Product type: IntelliJ IDEA is 1
bkey[1] = version;
Date d = new Date();
long ld = (d.getTime() >> 16);
bkey[2] = (byte) (ld & 255);
bkey[3] = (byte) ((ld >> 8) & 255);
bkey[4] = (byte) ((ld >> 16) & 255);
bkey[5] = (byte) ((ld >> 24) & 255);
days &= 0xffff;
bkey[6] = (byte) (days & 255);
bkey[7] = (byte) ((days >> 8) & 255);
bkey[8] = 105;
bkey[9] = -59;
bkey[10] = 0;
bkey[11] = 0;
int w = getCRC(name, id % 100000, bkey);
bkey[10] = (byte) (w & 255);
bkey[11] = (byte) ((w >> 8) & 255);
BigInteger pow = new BigInteger("89126272330128007543578052027888001981", 10);
BigInteger mod = new BigInteger("86f71688cdd2612ca117d1f54bdae029", 16);
BigInteger k0 = new BigInteger(bkey);
BigInteger k1 = k0.modPow(pow, mod);
String s0 = Integer.toString(id);
String sz = "0";
while (s0.length() != 5) {
s0 = sz.concat(s0);
}
s0 = s0.concat("-");
String s1 = encodeGroups(k1);
s0 = s0.concat(s1);
return s0;
} public static void main(String[] args) {
Random r = new Random();
System.out.println("name:" + "dev" );
System.out.println("KEY:" + MakeKey("dev", 0, r.nextInt(Integer.MAX_VALUE)));
}
}

最新文章

  1. [ios]关于用FMDB 操作数据库 删除 tableView 后刷新
  2. javascript中15种原生对象类型系统综述
  3. java并发容器类
  4. Codeforces Round #341 Div.2 B. Wet Shark and Bishops
  5. 打算从oschina的博客搬运到cnblog了
  6. RedHat Enterprise Linux 7关闭防火墙方法
  7. 彻底解决Android SDK Manager更新慢的问题
  8. 一个共通的viewModel搞定所有的编辑页面-经典ERP录入页面(easyui + knockoutjs + mvc4.0)
  9. Redis 笔记与总结2 String 类型和 Hash 类型
  10. 架构设计:负载均衡层设计方案(4)——LVS原理
  11. Delphi 多文件拖放获取路径示例
  12. if参数小结
  13. visual studio 2008安装报错问题处理
  14. 无废话WCF入门教程三[WCF的宿主]
  15. Python从json中提取数据
  16. Ultimus BPM 房地产与建筑行业应用解决方案
  17. 10 - JavaSE之网络编程
  18. XML (二)
  19. Oracle10g物理DG详细配置方法及步骤
  20. CentOS 7.6环境下安装中文字体库

热门文章

  1. zzulioj--1787--生活危机(vector+dfs 好题)
  2. rest_framework(解析器 上)
  3. js 实现 水仙花数
  4. MySql-Error: ERROR 1045 (28000): Access denied for user &#39;root&#39;@&#39;localhost&#39; (using password: YES)
  5. PostgreSQL Replication之第二章 理解PostgreSQL的事务日志(5)
  6. 文字添加响应事件,js动态加载CSS, js弹出DIV
  7. css常用的阴影
  8. 服务器TCP连接中 TIME_WAIT 状态过多
  9. XRDP与VNC的关系(转载)
  10. d3的一些总结