IntelliJ IDEA 14 註冊碼
IntelliJ IDEA 14 下載地址:
分享幾個license:
(1)
key:IDEA
value:61156-YRN2M-5MNCN-NZ8D2-7B4EW-U12L4
(2)
key:huangwei
value:97493-G3A41-0SO24-W57LI-Y2UGI-JGTU2
(3)
key:hkl520
value:34423-VZYXD-FQXZ7-O6I7U-J3ZK8-R7V62
(4)
key:Intelligent
value:40957-EG6O9-2915L-CF1RP-57IQJ-Y6VZ3
(5)
key:tommy
value:49164-YPNVL-OXUZL-XIWM4-Z9OHC-LF053
(6)
key:whuanghk
value:98220-IN97R-TV1ID-2JAPO-OXZEO-LAM70
(7)
key:itey
value:91758-T1CLA-C64F3-T7X5R-A7YDO-CRSN1
以下是破解程式碼:
- import java.math.BigInteger;
- import java.util.Date;
- import java.util.Random;
- import java.util.zip.CRC32;
- public class keygen
- {
- /**
- * @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
- * @param prtype
- * @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] = 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)
- {
- if (args.length == 0)
- {
- System.err.printf("*** Usage: %s name%n", keygen.class.getCanonicalName());
- System.exit(1);
- }
- Random r = new Random();
- System.out.println(MakeKey(args[0], 0, r.nextInt(100000)));
- }
- }
直接儲存為keygen.Java
D:\develop>javac keygen.java
D:\develop>Java keygen username
67937-QF06H-9X5JW-HWYVN-0G2G3-WVDL1
線上序號產生器
http://appcode.aliapp.com
相關文章
- IntelliJ IDEA 註冊碼啟用IntelliJIdea
- IntelliJ IDEA 2023 for Mac完美啟用版 IntelliJ IDEA 2023最新註冊碼分享IntelliJIdeaMac
- IntelliJ IDEA 2023註冊碼漢化破解版最新IntelliJIdea
- 支援M1:IntelliJ IDEA 2023 Mac破解附 IntelliJ IDEA 2023註冊碼 無需賬號登入IntelliJIdeaMac
- IntelliJ IDEA 2024中文啟用安裝包 IntelliJ IDEA 2024註冊碼下載 Mac+winIntelliJIdeaMac
- Macos最好用的Java開發工具:IntelliJ IDEA 2023.2.5啟用版 附 註冊碼MacJavaIntelliJIdea
- ReactNative開發 WebStorm IDEA 註冊碼ReactWebORMIdea
- IntelliJ IDEA 設定註釋模板 (Mac)IntelliJIdeaMac
- vmware12及vmware14註冊碼
- intellij IDEA建立檔案新增註釋模板IntelliJIdea
- 【IntelliJ IDEA】IntelliJIdea
- IntelliJ IDEA關聯gradle原始碼IntelliJIdeaGradle原始碼
- jar包+註冊碼 破解Jetbrains IDEA 2017.2.1版本JARAIIdea
- IntelliJ IDEA 2022.1.4IntelliJIdea
- IntelliJ IDEA 啟用教程,最新啟用碼 IDEA使用技巧IntelliJIdea
- 14 hashlib 案例2 使用者註冊
- 使用idea上傳專案到碼雲(gitee)上 IntelliJ IDEAIdeaGiteeIntelliJ
- VMware註冊碼
- PhpStorm註冊碼PHPORM
- IntelliJ IDEA快捷鍵IntelliJIdea
- IntelliJ IDEA 配置代理IntelliJIdea
- IntelliJ IDEA 破解教程IntelliJIdea
- IntelliJ IDEA配置JDKIntelliJIdeaJDK
- IntelliJ IDEA 2020.1官方IntelliJIdea
- WebStorm註冊碼+WebStorm破解版漢化最新「相容macos14」WebORMMac
- IntelliJ IDEA 2023漢化啟用版+IDEA 2023啟用碼最新IntelliJIdea
- Idea intellij中的@Data、@Slf4等註解無法使用IdeaIntelliJ
- Java開發工具IntelliJ IDEA 2022(idea)JavaIntelliJIdea
- Viscosity for Mac 註冊碼:Mac
- Navicat for MySQL註冊碼MySql
- ShadowDefender 註冊碼 分析
- IntelliJ IDEA 啟用(最新)IntelliJIdea
- IntelliJ IDEA 2019.1 新特性IntelliJIdea
- IntelliJ IDEA常用快捷鍵IntelliJIdea
- Intellij IDEA 中 使用 GitIntelliJIdeaGit
- IntelliJ IDEA下.gitignore配置IntelliJIdeaGit
- 【IntelliJ IDEA】2024最新使用IntelliJIdea
- IntelliJ IDEA 中的技巧IntelliJIdea
- 最新JProfiler 14 Mac破解版 附註冊碼 完整圖文安裝教程Mac