资源简介
项目开发包相关资料.rar
代码片段和文件信息
package cn.mldn.util;
public class MD5Code {
/*
* 下面这些S11-S44实际上是一个4*4的矩阵,在原始的C实现中是用#define 实现的, 这里把它们实现成为static
* final是表示了只读,切能在同一个进程空间内的多个 Instance间共享
*/
static final int S11 = 7;
static final int S12 = 12;
static final int S13 = 17;
static final int S14 = 22;
static final int S21 = 5;
static final int S22 = 9;
static final int S23 = 14;
static final int S24 = 20;
static final int S31 = 4;
static final int S32 = 11;
static final int S33 = 16;
static final int S34 = 23;
static final int S41 = 6;
static final int S42 = 10;
static final int S43 = 15;
static final int S44 = 21;
static final byte[] PADDING = { -128 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 };
/*
* 下面的三个成员是MD5计算过程中用到的3个核心数据,在原始的C实现中 被定义到MD5_CTX结构中
*/
private long[] state = new long[4];// state (ABCD)
private long[] count = new long[2];// number of bits modulo 2^64 (lsb
// first)
private byte[] buffer = new byte[64]; // input buffer
/*
* digestHexStr是MD5的唯一一个公共成员,是最新一次计算结果的 16进制ASCII表示.
*/
public String digestHexStr;
/*
* digest是最新一次计算结果的2进制内部表示,表示128bit的MD5值.
*/
private byte[] digest = new byte[16];
/*
* getMD5ofStr是类MD5最主要的公共方法,入口参数是你想要进行MD5变换的字符串
* 返回的是变换完的结果,这个结果是从公共成员digestHexStr取得的.
*/
public String getMD5ofStr(String inbuf) {
md5Init();
md5Update(inbuf.getBytes() inbuf.length());
md5Final();
digestHexStr = ““;
for (int i = 0; i < 16; i++) {
digestHexStr += byteHEX(digest[i]);
}
return digestHexStr;
}
// 这是MD5这个类的标准构造函数,JavaBean要求有一个public的并且没有参数的构造函数
public MD5Code() {
md5Init();
return;
}
/* md5Init是一个初始化函数,初始化核心变量,装入标准的幻数 */
private void md5Init() {
count[0] = 0L;
count[1] = 0L;
// /* Load magic initialization constants.
state[0] = 0x67452301L;
state[1] = 0xefcdab89L;
state[2] = 0x98badcfeL;
state[3] = 0x10325476L;
return;
}
/*
* F G H I 是4个基本的MD5函数,在原始的MD5的C实现中,由于它们是
* 简单的位运算,可能出于效率的考虑把它们实现成了宏,在java中,我们把它们 实现成了private方法,名字保持了原来C中的。
*/
private long F(long x long y long z) {
return (x & y) | ((~x) & z);
}
private long G(long x long y long z) {
return (x & z) | (y & (~z));
}
private long H(long x long y long z) {
return x ^ y ^ z;
}
private long I(long x long y long z) {
return y ^ (x | (~z));
}
/*
* FFGGHH和II将调用FGHI进行近一步变换 FF GG HH and II transformations for
* rounds 1 2 3 and 4. Rotation is separate from addition to prevent
* recomputation.
*/
private long FF(long a long b long c long d long x long s long ac) {
a += F(b c d) + x + ac;
a = ((int) a << s) | ((int) a >>> (32 - s));
a += b;
return a;
}
private long GG(long a long b long c long d long x long s long ac) {
a += G(b c d)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 195 2017-03-21 11:09 项目开发包包\ba
文件 22949 2017-03-19 22:31 项目开发包包\books\.idea\dbnavigator.xm
文件 617 2017-03-19 22:31 项目开发包包\books\.idea\misc.xm
文件 250 2017-03-19 22:31 项目开发包包\books\.idea\modules.xm
文件 34862 2017-03-20 17:27 项目开发包包\books\.idea\workspace.xm
文件 4636 2017-03-19 23:00 项目开发包包\books\assets\css\basic.css
文件 132546 2014-09-13 21:19 项目开发包包\books\assets\css\bootstrap.css
文件 4580 2017-03-15 10:24 项目开发包包\books\assets\css\custom.css
文件 26651 2014-09-13 21:19 项目开发包包\books\assets\css\font-awesome.css
文件 56006 2014-09-13 21:19 项目开发包包\books\assets\fonts\fontawesome-webfont.eot
文件 287007 2014-09-13 21:19 项目开发包包\books\assets\fonts\fontawesome-webfont.svg
文件 112160 2014-09-13 21:19 项目开发包包\books\assets\fonts\fontawesome-webfont.ttf
文件 65452 2014-09-13 21:19 项目开发包包\books\assets\fonts\fontawesome-webfont.woff
文件 85908 2014-09-13 21:19 项目开发包包\books\assets\fonts\FontAwesome.otf
文件 20335 2014-09-13 21:19 项目开发包包\books\assets\fonts\glyphicons-halflings-regular.eot
文件 62927 2014-09-13 21:19 项目开发包包\books\assets\fonts\glyphicons-halflings-regular.svg
文件 41280 2014-09-13 21:19 项目开发包包\books\assets\fonts\glyphicons-halflings-regular.ttf
文件 23320 2014-09-13 21:19 项目开发包包\books\assets\fonts\glyphicons-halflings-regular.woff
文件 10138 2014-09-13 21:19 项目开发包包\books\assets\img\user.png
文件 60681 2014-09-13 21:19 项目开发包包\books\assets\js\bootstrap.js
文件 2875 2017-03-02 10:24 项目开发包包\books\assets\js\custom.js
文件 293285 2014-09-13 21:19 项目开发包包\books\assets\js\jquery-1.10.2.js
文件 1386 2014-09-13 21:19 项目开发包包\books\assets\js\jquery.metisMenu.js
文件 296 2017-03-19 22:31 项目开发包包\books\books.iml
文件 4592 2017-03-19 23:13 项目开发包包\books\index.html
文件 2405 2017-03-19 23:13 项目开发包包\books\login.html
文件 18266 2015-10-12 13:44 项目开发包包\c.tld
文件 541 2017-03-22 18:47 项目开发包包\forward.jsp
文件 57 2017-03-21 22:21 项目开发包包\IDAE 14激活码.txt
文件 16415 2015-06-03 08:23 项目开发包包\jQuery验证框架\additional-methods.min.js
............此处省略24个文件信息
- 上一篇:数字信号处理之时频分析.pdf
- 下一篇:《面向对象程序设计》项目设计
相关资源
- THINKPAD写号软件usbfmtpw.exe.rar
- PCS7-motor电机块使用详解.pdf
- SmartHomeV2.tar.gz
- mini-KMS_Activator_v1.2_Office2010_VL_ENG.rar
- 茄子双胆软件.rar
- anyconnect-win-2.4.1012-web-deploy-k9.exe
- myeclipse2015破解.rar
- 97修课平台软件.zip
- Kotlin语言权威指南2020.pdf
- VirtualAudioCable.rar
- Hibernate3中文参考
- Algorithm_Introduction_Solutions.zip
- XE7UP1破解工具.rar
- DSC_v1.2.pdf
- X-Door[F335].rar
- 早起打卡挑战3.3.5.zip
- scvpn.exe
- Project3.rar
- Path_AstarB.rar
- IEC_62443工控网络与系统信息安全标准
- S7-200仿真软件V3.0汉化版.zip
- weatherview.rar
- 万能表单6.7.4.zip
- XGeocoding_1.0.0.13.rar
- JigsawGUI.rar
- iCloud源码.zip
- qq_30742865_9453697.e
- 0023、基于51单片机的数字频率计设计
- Jetbrains相关.rar
- 1088586红包拓客生意宝2.1.2.zip
评论
共有 条评论