博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IntelliJ IDEA 14.0.2破解注册码文件
阅读量:4113 次
发布时间:2019-05-25

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

Java文件代码:

import java.math.BigInteger; import java.util.Date; import java.util.Random; import java.util.Scanner; import java.util.zip.CRC32; public class KeyGen {
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(); } 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(); } 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(); } 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] = 14; // 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("请输入用户名:"); Scanner scanner = new Scanner(System.in); String username = scanner.next(); Random r = new Random(); System.out.println(MakeKey(username, 0, r.nextInt(100000))); } }

运行这段代码即可得到破解码

转载地址:http://wmesi.baihongyu.com/

你可能感兴趣的文章
PHP+Apache+MySQL经典搭配,创建环境二 Apache Web服务器安装(转载并修改)
查看>>
搭建PHP后台开发环境, XAMPP
查看>>
su和sudo的区别与使用, 如果有时提示说权限不够, 而使用sudo后也同样提示,可以试试su
查看>>
使用fedora进行Android源码的编译
查看>>
SQLite3-增删改查 转载并修改
查看>>
MPMoviePlayerViewController播放媒体文件时在ios5.0上的区别--修改
查看>>
iAd和admob混用
查看>>
UIScrollView无法响应touch事件的解决办法
查看>>
技术普及帖:你刚才在淘宝上买了一件东西
查看>>
普及贴:关于码率bitrate,帧率frame rate,分辨率的区别
查看>>
iphone ios 如何开发升级适配 iphone5 4inch
查看>>
UITextView接收左右点击事件。
查看>>
ios上生成pdf文档
查看>>
解决头文件相互包含问题的方法
查看>>
iOS设备的硬件适配 (关于armv6, armv7, armv7s 个人觉得说得比较清楚)
查看>>
iOS开源类库收集
查看>>
OPen GL 学习 (一)2D纹理使用
查看>>
Open GL学习 (二) 3D模型的使用
查看>>
如何将SQLite数据库(dictionary.db文件)与apk文件一起发布
查看>>
android如何使用数据库文件?
查看>>