`
seekgirl
  • 浏览: 76886 次
  • 性别: Icon_minigender_1
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论

intellij idea 13 keygen

阅读更多
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] = 13; // 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)));
   }
}

 仅供学习

分享到:
评论
16 楼 TsaiYang 2012-05-23  
LZ太有才了
15 楼 lijingronghcit 2011-12-07  
11 出来了,楼主有11 的吗?
14 楼 wenxiang_tune 2011-09-09  
专门来顶的10.5还可以用。神啊
13 楼 lzy83925 2011-06-23  
到底是不是毒啊 别吓唬我们啊
12 楼 seekgirl 2011-03-06  
bugmenot 写道
it's a virus

误报
11 楼 bugmenot 2011-03-03  
it's a virus
10 楼 hrwhat 2010-12-13  
Very 3x !!
9 楼 honlin 2010-12-13  
已经下载了,用了一天了,感觉很不错,进步不少啊。
每个小版本都用了几天,一直都在感受idea的进步。
8 楼 sarin 2010-12-13  
只用Eclipse,不涉及这类问题,扯不清。
7 楼 fengyie007 2010-12-11  
确实可以用
6 楼 magicdoom 2010-12-10  
keygen来的真快
5 楼 phoenix520 2010-12-10  
速度够快的,太感谢啦,这么好的IDE,等收入和国际接轨后一定支持正版!
4 楼 x_root 2010-12-10  
不错,可以用,谢谢!
启动速度那个快呀,界面那个漂亮了啊。

想问下楼主如何破解的?
3 楼 seekgirl 2010-12-10  
yanwt 写道
楼主太强大了,刚出来就有破解了

所有资源来自互联网,仅用于学习研究,请下载后在24小时内删除,谢谢
2 楼 yanwt 2010-12-10  
楼主太强大了,刚出来就有破解了
1 楼 baoguohang 2010-12-10  
内牛满面啊,如果是真的的话

相关推荐

Global site tag (gtag.js) - Google Analytics