博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IDEA14 神秘代码生成器
阅读量:7030 次
发布时间:2019-06-28

本文共 3583 字,大约阅读时间需要 11 分钟。

hot3.png

import java.math.BigInteger;import java.util.Date;import java.util.Random;import java.util.Scanner;import java.util.zip.CRC32;public class keygen {    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) {        System.out.println("Please input username:");        Scanner sc = new Scanner(System.in);        String username = sc.nextLine();        Random r = new Random();        System.out.println("user name:" + username + " KEY:" + MakeKey("OSC", 0, r.nextInt(Integer.MAX_VALUE)));    }}

转载于:https://my.oschina.net/CasparLi/blog/342620

你可能感兴趣的文章
idea中如何配置git以及在idea中初始化git
查看>>
关于JQuery Class选择器的一点
查看>>
POJ3264 Balanced Lineup
查看>>
redis-cli 连接远程服务器
查看>>
emlog通过pjax实现无刷新加载网页--完美解决cnzz统计和javascript失效问题
查看>>
sublime 之 vitage/emmet
查看>>
代码管理(四)SVN和Git对比
查看>>
python - hadoop,mapreduce demo
查看>>
mongodb常见管理命令
查看>>
1.7 以函数对象取代函数
查看>>
Vue过渡效果之JS过渡
查看>>
Android项目实战(三):实现第一次进入软件的引导页
查看>>
Web Service基础——基础概念
查看>>
Linux2.4文件系统中vfsmount、安装点的dentry、设备的dentry之间的关系【转】
查看>>
POJ 1201 Intervals
查看>>
JAVA訪问URL
查看>>
APP接口基础学习一
查看>>
设计模式 策略模式 以角色游戏为背景
查看>>
【转】CSS和SVG中的剪切——clip-path属性和<clipPath>元素
查看>>
【C语言入门教程】5.4 递归
查看>>