IntelliJ IDEA 14 Keygen

  1 package keygen;
  2
  3 import java.math.BigInteger;
  4 import java.util.Date;
  5 import java.util.zip.CRC32;
  6
  7 public class Keygen {
  8
  9     private static final int version = 14;
 10
 11     /**
 12      * @param s
 13      * @param i
 14      * @param bytes
 15      * @return
 16      */
 17     public static short getCRC(String s, int i, byte bytes[]) {
 18         CRC32 crc32 = new CRC32();
 19         if (s != null) {
 20             for (int j = 0; j < s.length(); j++) {
 21                 char c = s.charAt(j);
 22                 crc32.update(c);
 23             }
 24         }
 25         crc32.update(i);
 26         crc32.update(i >> 8);
 27         crc32.update(i >> 16);
 28         crc32.update(i >> 24);
 29         for (int k = 0; k < bytes.length - 2; k++) {
 30             byte byte0 = bytes[k];
 31             crc32.update(byte0);
 32         }
 33         return (short) (int) crc32.getValue();
 34     }
 35
 36     /**
 37      * @param biginteger
 38      * @return String
 39      */
 40     public static String encodeGroups(BigInteger biginteger) {
 41         BigInteger beginner1 = BigInteger.valueOf(0x39aa400L);
 42         StringBuilder sb = new StringBuilder();
 43         for (int i = 0; biginteger.compareTo(BigInteger.ZERO) != 0; i++) {
 44             int j = biginteger.mod(beginner1).intValue();
 45             String s1 = encodeGroup(j);
 46             if (i > 0) {
 47                 sb.append("-");
 48             }
 49             sb.append(s1);
 50             biginteger = biginteger.divide(beginner1);
 51         }
 52         return sb.toString();
 53     }
 54
 55     /**
 56      * @param i
 57      * @return
 58      */
 59     public static String encodeGroup(int i) {
 60         StringBuilder sb = new StringBuilder();
 61         for (int j = 0; j < 5; j++) {
 62             int k = i % 36;
 63             char c;
 64             if (k < 10) {
 65                 c = (char) (48 + k);
 66             } else {
 67                 c = (char) ((65 + k) - 10);
 68             }
 69             sb.append(c);
 70             i /= 36;
 71         }
 72         return sb.toString();
 73     }
 74
 75     /**
 76      * @param name
 77      * @param days
 78      * @param id
 79      * @return
 80      */
 81     public static String MakeKey(String name, int days, int id) {
 82         id %= 100000;
 83         byte bkey[] = new byte[12];
 84         bkey[0] = (byte) 1; // Product type: IntelliJ IDEA is 1
 85         bkey[1] = version;
 86         Date d = new Date();
 87         long ld = (d.getTime() >> 16);
 88         bkey[2] = (byte) (ld & 255);
 89         bkey[3] = (byte) ((ld >> 8) & 255);
 90         bkey[4] = (byte) ((ld >> 16) & 255);
 91         bkey[5] = (byte) ((ld >> 24) & 255);
 92         days &= 0xffff;
 93         bkey[6] = (byte) (days & 255);
 94         bkey[7] = (byte) ((days >> 8) & 255);
 95         bkey[8] = 105;
 96         bkey[9] = -59;
 97         bkey[10] = 0;
 98         bkey[11] = 0;
 99         int w = getCRC(name, id % 100000, bkey);
100         bkey[10] = (byte) (w & 255);
101         bkey[11] = (byte) ((w >> 8) & 255);
102         BigInteger pow = new BigInteger("89126272330128007543578052027888001981", 10);
103         BigInteger mod = new BigInteger("86f71688cdd2612ca117d1f54bdae029", 16);
104         BigInteger k0 = new BigInteger(bkey);
105         BigInteger k1 = k0.modPow(pow, mod);
106         String s0 = Integer.toString(id);
107         String sz = "0";
108         while (s0.length() != 5) {
109             s0 = sz.concat(s0);
110         }
111         s0 = s0.concat("-");
112         String s1 = encodeGroups(k1);
113         s0 = s0.concat(s1);
114         return s0;
115     }
116 }
            Random r = new Random();
            String key = MakeKey(userName, 0, r.nextInt(Integer.MAX_VALUE));

下载地址:Keygen-14.zip

时间: 2024-10-12 22:40:30

IntelliJ IDEA 14 Keygen的相关文章

IntelliJ IDEA 14 注册码

IntelliJ IDEA 14 下载地址: IntelliJ IDEA 14 下载 分享几个license: (1) key:IDEA value:61156-YRN2M-5MNCN-NZ8D2-7B4EW-U12L4 (2) key:huangweivalue:97493-G3A41-0SO24-W57LI-Y2UGI-JGTU2 (3) key:hkl520value:34423-VZYXD-FQXZ7-O6I7U-J3ZK8-R7V62 (4) key:Intelligentvalue:

Intellij IDEA 14.1.4 Scala开发环境搭建

主要内容 Intellij IDEA开发环境简介 Intellij IDEA Scala开发环境搭建 Intellij IDEA常见问题及解决方案 Intellij IDEA常用快捷键 1. Intellij IDEA开发环境简介 具体介绍请参见:http://baike.baidu.com/link?url=SBY93H3SPkmcmIOmZ8H60O1k4iVLgOmdqoKdGp9xHtU-Pbdsq2cpn75ZPZPWAJxeUlwr0ravraQzOckh777beq Intelli

IntelliJ IDEA 14.x 与 Tomcat 集成,创建并运行Java Web项目

创建Web项目 1.File -> New Project ,进入创建项目窗口 2.在 WEB-INF 目录下点击右键,New -> Directory,创建 classes 和 lib 两个目录 3.File -> Project Structure,进入 Project Structure窗口 4.点击 Modules -> 选中项目“JavaWeb” -> 切换到 Paths 选项卡 -> 勾选 “Use module compile output path”,将

通过Intellij IDEA 14.1将web应用部署到docker容器

2015年2月4日发布的IntelliJ IDEA 14.1宣布支持Docker,详情:Docker Support in IntelliJ IDEA 14.1 本文主要介绍IntelliJ IDEA 14.1中部署docker容器的方法. 1.下载安装IntelliJ IDEA 14.1() http://www.jetbrains.com/idea/ 2.下载安装插件Docker-plugin.jar 3. 配置远程docker 4.在web项目中新建目录docker-dir和文件Docke

IntelliJ IDEA 14 注册码生成器

IntelliJ IDEA 14 注册码生成器 文件为Java代码 自己编译运行里面的程序输入名称然后就生成注册码了工具:http://yun.baidu.com/s/1cZKsA部分工具生成的注册码:用户: share密钥:78689-AFOCD-P3SDN-83DEC-BQ3UC-V6UK7用户: for密钥:13768-8VXX0-YL2BG-YBD88-2M3HN-CAOQ5用户: you密钥:92843-YNXOU-106BT-53NDP-PYZPL-09TJ4 用户: open密钥:

Intellij IDEA 14中使用MyBatis-generator 自动生成MyBatis代码

Intellij IDEA 14 作为Java IDE 神器,接触后发现,非常好用,对它爱不释手,打算离开eclipse和myeclipse,投入Intellij IDEA的怀抱. 然而在使用的过程中会发现Intellij IDEA也有一些不尽如意的地方,难免会有些不爽:Intellij IDEA 的插件库远不及eclipse的丰富. mybatis-generator在eclipse中有专门的插件,而没有开发出Intellij IDEA能够使用的插件. 不过不用灰心,如果你的项目是使用mave

IntelliJ IDEA 14.x 创建工作空间与多个Java Web项目

以往的Eclipse.NetBeans等开发工具不同,IDEA的Project相当与Eclipse的Workspace,而Module相当于Project. 下边就给出Eclipse与IDEA的概念的对应关系: 我们的目标是:创建工作空间,然后在它下面建立至少2个项目(就2个吧),即 工作空间 JavaWorkspace下,包含 JavaOne 与 JavaTwo 两个项目. 一.温习下先前的文章:IntelliJ IDEA 14.x 与 Tomcat 集成,创建并运行Java Web项目(其实

使用IntelliJ IDEA 14和Maven创建java web项目

原文:使用IntelliJ IDEA 14和Maven创建java web项目 http://mark.leanote.com/post/%E4%BD%BF%E7%94%A8IntelliJ-IDEA-14%E5%92%8CMaven%E5%88%9B%E5%BB%BAjava-web%E9%A1%B9%E7%9B%AE 安装Maven 下载安装 去maven官网下载最新版. 解压到安装目录. 配置 右键桌面的计算机图标,属性–>高级系统设置–>环境变量,添加M2_HOME的环境变量,然后将该

Mac10.10 Intellij idea 14 您需要安装旧java se 6 运行环境才能打开

今天装好了10.10,安装开发环境:jdk1.8,intellij idea 14,打开idea的时候提示:您需要安装旧java se 6 运行环境才能打开.费解!之前10.9的时候安装就没有出现问题. 解决办法:到应用程序中找到idea,右键-->显示包内容-->Contents-->Info.plist,用文本编辑器编辑.找到 <key>JVMVersion</key> <string>1.6*</string> 修改为 <key