找回密码
 点一下
楼主: 麦德三世B

[呜][记事本]把该做的事情记下来

  [复制链接]
发表于 2007-1-1 15:37:44 | 显示全部楼层
报名汉化组~~请大大收留我~~6555555
回复

使用道具 举报

发表于 2007-1-1 16:06:20 | 显示全部楼层
当年组建的时候1个月无人响应...而今居然有3个苦力跳出来老???
回复

使用道具 举报

发表于 2007-1-1 16:09:29 | 显示全部楼层
厄,看来和rpg一样,剧情需要特定时间到了才能触发
回复

使用道具 举报

发表于 2007-1-1 16:37:57 | 显示全部楼层
恩……我也要考虑要不要加入汉化组了
回复

使用道具 举报

发表于 2007-1-1 17:57:26 | 显示全部楼层
555,我不要加入。
回复

使用道具 举报

发表于 2007-1-1 17:58:22 | 显示全部楼层
某A还米出台wiki标准啊...
回复

使用道具 举报

发表于 2007-1-1 18:32:32 | 显示全部楼层
偶还在研究进制转换的问题。555。
回复

使用道具 举报

发表于 2007-1-1 19:39:42 | 显示全部楼层
传说系列素谁?恩恩....
回复

使用道具 举报

发表于 2007-1-1 19:41:31 | 显示全部楼层
555,吃饭去老。
白银大人有啥米办法可以不调用JAVA中的Math类来计算pow?
只有循环了么?
回复

使用道具 举报

发表于 2007-1-1 19:44:31 | 显示全部楼层
引用第28楼传说系列2007-01-01 19:41发表的:
555,吃饭去老。
白银大人有啥米办法可以不调用JAVA中的Math类来计算pow?
只有循环了么?

555...根据指数滴分类(整数...小数...)有不同优化方法...
回复

使用道具 举报

发表于 2007-1-1 20:00:23 | 显示全部楼层
整数。555。
回复

使用道具 举报

发表于 2007-1-1 20:08:19 | 显示全部楼层
...
简单追求效率的算法...
a^41=a* a^8 * a^32
a^49=a* a^16 *a^32
...

555还以为指数素小数...
要用Maclaurin公式展开...
回复

使用道具 举报

发表于 2007-1-1 20:17:01 | 显示全部楼层
555.
JAVA中的^不素异或么?
回复

使用道具 举报

发表于 2007-1-1 20:18:15 | 显示全部楼层
555...如果这里能打出指数偶才懒得用"^"...
回复

使用道具 举报

发表于 2007-1-1 20:22:07 | 显示全部楼层
可是偶的问题不正素为老要实现这个^么。。
公式后面可还是有^号呢。

其实偶不想调用Math.pow。素因为调用一个方法太费时间老。
555,其实偶素白痴啦。对算法十窍只通老九窍。
回复

使用道具 举报

发表于 2007-1-1 20:28:33 | 显示全部楼层
555...
反复平方法...

a^2=a*a...
a^4=a^2 * a^2
a^8=a^4 * a^4
a^16=a^8 * a^8
a^32=a^16 * a^16
...
a[49]=a * a^16 * a^32...
计算a^49只用7次乘法...
回复

使用道具 举报

发表于 2007-1-1 21:28:31 | 显示全部楼层
555,现在不管这个老。

白银大人帮偶看偶的代码。研究老一天老。
现在眼晕老。其实基本过程好像就这样老。

很有可能是那4个0x01234567。我见RFC上的是67452301。
还有一个可能就是我的I2B。I2B。B2L有问题。
再有的话就是填充方法。
或者最后输出那四个32位整数有问题。
再或者。
我把他们相加本来就有问题。
5555。总之帮偶看一下吧。
  1. package test;
  2. public class MyMD5 {
  3.     // private static final int[][] S = { { 7, 12, 17, 22 }, { 5, 9, 14, 20 },
  4.     // { 4, 11, 16, 23 }, { 6, 10, 15, 21 } };
  5.     private static final int S11 = 7;
  6.     private static final int S12 = 12;
  7.     private static final int S13 = 17;
  8.     private static final int S14 = 22;
  9.     private static final int S21 = 5;
  10.     private static final int S22 = 9;
  11.     private static final int S23 = 14;
  12.     private static final int S24 = 20;
  13.     private static final int S31 = 4;
  14.     private static final int S32 = 11;
  15.     private static final int S33 = 16;
  16.     private static final int S34 = 23;
  17.     private static final int S41 = 6;
  18.     private static final int S42 = 10;
  19.     private static final int S43 = 15;
  20.     private static final int S44 = 21;
  21.     private static final int[] STATE = {
  22.         0x01234567,
  23.         0x89abcdef,
  24.         0xfedcba98,
  25.         0x76543210 };
  26.     /**
  27.      * 缓存的512位信息数组(64个byte)
  28.      */
  29.     private byte[] cache;
  30.     /**
  31.      * 当前缓存的长度
  32.      */
  33.     private byte cacheLength;
  34.     /**
  35.      * 已经计算的长度
  36.      */
  37.     private long coreLength;
  38.     /**
  39.      * MD5中的第一个32位分组
  40.      */
  41.     private int a;
  42.     /**
  43.      * MD5中的第二个32位分组
  44.      */
  45.     private int b;
  46.     /**
  47.      * MD5中的第三个32位分组
  48.      */
  49.     private int c;
  50.     /**
  51.      * MD5中的第四个32位分组
  52.      */
  53.     private int d;
  54.     /**
  55.      * 把一个字节数组转换为整数
  56.      *
  57.      * @param b
  58.      *            字节数组
  59.      * @return 转换后的整数
  60.      */
  61.     public int B2I(byte[] b) {
  62.         return B2I(b, 0, b.length);
  63.     }
  64.     public int B2I(byte[] b, int off, int len) {
  65.         len = (len <= 4) ? len : 4;
  66.         int result = 0;
  67.         // 开始计算
  68.         for (int i = 0; i < len; i++) {
  69.             int temp = b[(len - i - 1) + off] & 0xFF;
  70.             result += temp * StrictMath.pow(0x100, i);
  71.         }
  72.         return result;
  73.     }
  74.     /**
  75.      * 将一个整数转换为一个字节数组
  76.      *
  77.      * @param i
  78.      *            一个整数
  79.      * @return 转换后的字节数组
  80.      */
  81.     public void I2B(int i, byte[] b, int off) {
  82.         if (off + 4 > b.length) {
  83.             return;
  84.         }
  85.         b[0 + off] = (byte) (i / 0x1000000);
  86.         b[1 + off] = (byte) (i / 0x10000);
  87.         b[2 + off] = (byte) (i / 0x100);
  88.         b[3 + off] = (byte) (i);
  89.     }
  90.    
  91.     public void L2B(long l, byte[] b, int off){
  92.         if (off + 8 > b.length) {
  93.             return;
  94.         }
  95.         b[0 + off] = (byte) (l / 0x100000000000000l);
  96.         b[1 + off] = (byte) (l / 0x1000000000000l);
  97.         b[2 + off] = (byte) (l / 0x10000000000l);
  98.         b[3 + off] = (byte) (l / 0x100000000l);
  99.         b[4 + off] = (byte) (l / 0x1000000);
  100.         b[5 + off] = (byte) (l / 0x10000);
  101.         b[6 + off] = (byte) (l / 0x100);
  102.         b[7 + off] = (byte) (l);
  103.     }
  104.    
  105.     public MyMD5(){
  106.         init();
  107.     }
  108.     /**
  109.      * 初始化当前计算
  110.      *
  111.      */
  112.     private void init() {
  113.         cache = new byte[64];
  114.         cacheLength = 0;
  115.         coreLength = 0;
  116.         a = 0;
  117.         b = 0;
  118.         c = 0;
  119.         d = 0;
  120.     }
  121.     private int F(int x, int y, int z) {
  122.         return ((x & y) | (~x) & z);
  123.     }
  124.     private int G(int x, int y, int z) {
  125.         return ((x & z) | (y & (~z)));
  126.     }
  127.     private int H(int x, int y, int z) {
  128.         return (x ^ y ^ z);
  129.     }
  130.     private int I(int x, int y, int z) {
  131.         return (y ^ (x | (~z)));
  132.     }
  133.     private int ROTATE_LEFT(int x, int n) {
  134.         return (((x) << (n)) | ((x) >> (32 - (n))));
  135.     }
  136.     /**
  137.      * MD5中的第一轮计算函数
  138.      *
  139.      * @return
  140.      */
  141.     private int FF(int a, int b, int c, int d, int x, int s, int ac) {
  142.         a += F(b, c, d) + x + ac;
  143.         //a = ROTATE_LEFT(a, s);
  144.         a += b;
  145.         return a;
  146.     }
  147.     /**
  148.      * MD5中的第二轮计算函数
  149.      *
  150.      * @return
  151.      */
  152.     private int GG(int a, int b, int c, int d, int x, int s, int ac) {
  153.         a += G(b, c, d) + x + ac;
  154.         //a = ROTATE_LEFT(a, s);
  155.         a += b;
  156.         return a;
  157.     }
  158.     /**
  159.      * MD5中的第三轮计算函数
  160.      *
  161.      * @return
  162.      */
  163.     private int HH(int a, int b, int c, int d, int x, int s, int ac) {
  164.         a += H(b, c, d) + x + ac;
  165.         //a = ROTATE_LEFT(a, s);
  166.         a += b;
  167.         return a;
  168.     }
  169.     /**
  170.      * MD5中的第四轮计算函数
  171.      *
  172.      * @return
  173.      */
  174.     private int II(int a, int b, int c, int d, int x, int s, int ac) {
  175.         a += I(b, c, d) + x + ac;
  176.         //a = ROTATE_LEFT(a, s);
  177.         a += b;
  178.         return a;
  179.     }
  180.     /**
  181.      * 计算当前缓存的结果
  182.      *
  183.      */
  184.     private void calculate() {
  185.         /**
  186.          * 检查是否缓冲完成
  187.          */
  188.         if (cacheLength != 64) {
  189.             return;
  190.         }
  191.         int[] x = new int[16];
  192.         for (int i = 0; i < x.length; i++) {
  193.             x[i] = B2I(cache, i * 4, 4);
  194.         }
  195.         int a = STATE[0];
  196.         int b = STATE[1];
  197.         int c = STATE[2];
  198.         int d = STATE[3];
  199.         /**
  200.          * 第一轮
  201.          */
  202.         a += FF(a, b, c, d, x[0], S11, 0xd76aa478); /* 1 */
  203.         d += FF(d, a, b, c, x[1], S12, 0xe8c7b756); /* 2 */
  204.         c += FF(c, d, a, b, x[2], S13, 0x242070db); /* 3 */
  205.         b += FF(b, c, d, a, x[3], S14, 0xc1bdceee); /* 4 */
  206.         a += FF(a, b, c, d, x[4], S11, 0xf57c0faf); /* 5 */
  207.         d += FF(d, a, b, c, x[5], S12, 0x4787c62a); /* 6 */
  208.         c += FF(c, d, a, b, x[6], S13, 0xa8304613); /* 7 */
  209.         b += FF(b, c, d, a, x[7], S14, 0xfd469501); /* 8 */
  210.         a += FF(a, b, c, d, x[8], S11, 0x698098d8); /* 9 */
  211.         d += FF(d, a, b, c, x[9], S12, 0x8b44f7af); /* 10 */
  212.         c += FF(c, d, a, b, x[10], S13, 0xffff5bb1); /* 11 */
  213.         b += FF(b, c, d, a, x[11], S14, 0x895cd7be); /* 12 */
  214.         a += FF(a, b, c, d, x[12], S11, 0x6b901122); /* 13 */
  215.         d += FF(d, a, b, c, x[13], S12, 0xfd987193); /* 14 */
  216.         c += FF(c, d, a, b, x[14], S13, 0xa679438e); /* 15 */
  217.         b += FF(b, c, d, a, x[15], S14, 0x49b40821); /* 16 */
  218.         /**
  219.          * 第二轮
  220.          */
  221.         a += GG(a, b, c, d, x[1], S21, 0xf61e2562); /* 17 */
  222.         d += GG(d, a, b, c, x[6], S22, 0xc040b340); /* 18 */
  223.         c += GG(c, d, a, b, x[11], S23, 0x265e5a51); /* 19 */
  224.         b += GG(b, c, d, a, x[0], S24, 0xe9b6c7aa); /* 20 */
  225.         a += GG(a, b, c, d, x[5], S21, 0xd62f105d); /* 21 */
  226.         d += GG(d, a, b, c, x[10], S22, 0x2441453); /* 22 */
  227.         c += GG(c, d, a, b, x[15], S23, 0xd8a1e681); /* 23 */
  228.         b += GG(b, c, d, a, x[4], S24, 0xe7d3fbc8); /* 24 */
  229.         a += GG(a, b, c, d, x[9], S21, 0x21e1cde6); /* 25 */
  230.         d += GG(d, a, b, c, x[14], S22, 0xc33707d6); /* 26 */
  231.         c += GG(c, d, a, b, x[3], S23, 0xf4d50d87); /* 27 */
  232.         b += GG(b, c, d, a, x[8], S24, 0x455a14ed); /* 28 */
  233.         a += GG(a, b, c, d, x[13], S21, 0xa9e3e905); /* 29 */
  234.         d += GG(d, a, b, c, x[2], S22, 0xfcefa3f8); /* 30 */
  235.         c += GG(c, d, a, b, x[7], S23, 0x676f02d9); /* 31 */
  236.         b += GG(b, c, d, a, x[12], S24, 0x8d2a4c8a); /* 32 */
  237.         /**
  238.          * 第三轮
  239.          */
  240.         a += HH(a, b, c, d, x[5], S31, 0xfffa3942); /* 33 */
  241.         d += HH(d, a, b, c, x[8], S32, 0x8771f681); /* 34 */
  242.         c += HH(c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */
  243.         b += HH(b, c, d, a, x[14], S34, 0xfde5380c); /* 36 */
  244.         a += HH(a, b, c, d, x[1], S31, 0xa4beea44); /* 37 */
  245.         d += HH(d, a, b, c, x[4], S32, 0x4bdecfa9); /* 38 */
  246.         c += HH(c, d, a, b, x[7], S33, 0xf6bb4b60); /* 39 */
  247.         b += HH(b, c, d, a, x[10], S34, 0xbebfbc70); /* 40 */
  248.         a += HH(a, b, c, d, x[13], S31, 0x289b7ec6); /* 41 */
  249.         d += HH(d, a, b, c, x[0], S32, 0xeaa127fa); /* 42 */
  250.         c += HH(c, d, a, b, x[3], S33, 0xd4ef3085); /* 43 */
  251.         b += HH(b, c, d, a, x[6], S34, 0x4881d05); /* 44 */
  252.         a += HH(a, b, c, d, x[9], S31, 0xd9d4d039); /* 45 */
  253.         d += HH(d, a, b, c, x[12], S32, 0xe6db99e5); /* 46 */
  254.         c += HH(c, d, a, b, x[15], S33, 0x1fa27cf8); /* 47 */
  255.         b += HH(b, c, d, a, x[2], S34, 0xc4ac5665); /* 48 */
  256.         /**
  257.          * 第四轮
  258.          */
  259.         a += II(a, b, c, d, x[0], S41, 0xf4292244); /* 49 */
  260.         d += II(d, a, b, c, x[7], S42, 0x432aff97); /* 50 */
  261.         c += II(c, d, a, b, x[14], S43, 0xab9423a7); /* 51 */
  262.         b += II(b, c, d, a, x[5], S44, 0xfc93a039); /* 52 */
  263.         a += II(a, b, c, d, x[12], S41, 0x655b59c3); /* 53 */
  264.         d += II(d, a, b, c, x[3], S42, 0x8f0ccc92); /* 54 */
  265.         c += II(c, d, a, b, x[10], S43, 0xffeff47d); /* 55 */
  266.         b += II(b, c, d, a, x[1], S44, 0x85845dd1); /* 56 */
  267.         a += II(a, b, c, d, x[8], S41, 0x6fa87e4f); /* 57 */
  268.         d += II(d, a, b, c, x[15], S42, 0xfe2ce6e0); /* 58 */
  269.         c += II(c, d, a, b, x[6], S43, 0xa3014314); /* 59 */
  270.         b += II(b, c, d, a, x[13], S44, 0x4e0811a1); /* 60 */
  271.         a += II(a, b, c, d, x[4], S41, 0xf7537e82); /* 61 */
  272.         d += II(d, a, b, c, x[11], S42, 0xbd3af235); /* 62 */
  273.         c += II(c, d, a, b, x[2], S43, 0x2ad7d2bb); /* 63 */
  274.         b += II(b, c, d, a, x[9], S44, 0xeb86d391); /* 64 */
  275.         /**
  276.          * 处理结果
  277.          */
  278.         this.a += a;
  279.         this.b += b;
  280.         this.c += c;
  281.         this.d += d;
  282.         cacheLength = 0;
  283.         coreLength += 64;
  284.     }
  285.     /**
  286.      * 更新当前计算结果
  287.      *
  288.      * @param b
  289.      */
  290.     public void update(byte[] b) {
  291.         int off = 0;
  292.         int len = 0;
  293.         int bLen = b.length;
  294.         while (off < bLen) {
  295.             len = Math.min(cache.length - (cacheLength), bLen - off);
  296.             System.arraycopy(b, off, cache, cacheLength, len);
  297.             cacheLength += len;
  298.             off += len;
  299.             calculate();
  300.         }
  301.     }
  302.     /**
  303.      * 填充最后的字段
  304.      *
  305.      */
  306.     private void fill() {
  307.         long msgLength = coreLength+(cacheLength*8);
  308.         int fillCount = 56 - cacheLength;
  309.         
  310.         /**
  311.          * 如果填充位置不够,则再加多512位。
  312.          */
  313.         if(fillCount < 0){
  314.             fillCount = 64 - fillCount;
  315.         }
  316.         
  317.         /**
  318.          * 如果需要填充,则生成填充字节。
  319.          */
  320.         if(fillCount >0){
  321.             byte[] b = new byte[fillCount];
  322.             b[0] = -128;
  323.             this.update(b);
  324.         }
  325.         L2B(msgLength,cache,cacheLength);
  326.         cacheLength+=8;
  327.         calculate();
  328.     }
  329.     /**
  330.      * 完成最终的计算
  331.      *
  332.      * @return 计算后的128位散列
  333.      */
  334.     public byte[] digest() {
  335.         byte[] result = new byte[16];
  336.         // 填充
  337.         fill();
  338.         // 计算结果
  339.         I2B(a, result, 0);
  340.         I2B(b, result, 4);
  341.         I2B(c, result, 8);
  342.         I2B(d, result, 12);
  343.         // 计算完成以后重置
  344.         init();
  345.         return result;
  346.     }
  347. }
复制代码
回复

使用道具 举报

发表于 2007-1-1 21:37:02 | 显示全部楼层
看不懂```
回复

使用道具 举报

发表于 2007-1-1 21:43:44 | 显示全部楼层
5555,叔叔骗人。
回复

使用道具 举报

发表于 2007-1-1 21:44:09 | 显示全部楼层
555...首先那4个常数确实有问题...
RFC上要求它在内存中存放滴素01234567
但素由于高位高字节,所以初始化素0x67452301...
其余慢慢看...
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 点一下

本版积分规则

Archiver|移动端|小黑屋|地精研究院

GMT+8, 2024-11-24 23:54 , Processed in 0.052163 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表