搜索资源列表
MD5
- MD5算法,输入需MD5的String,输出为128位,16字节16进制String
MD5不可逆加密算法的ASP实现实例
- 此为国外转载函数,可将任意字符转换为md5 16为字符加密形式,而且为不可逆转换。-reproduced here for foreign functions, arbitrary characters can be converted to 16 md5 encrypted form of characters, but also to irreversible change.
MD5Encode
- Java 16位MD5 Hash code generator-Java 16 md5 generator
MD5
- MD5加密的C#实现.可加密16位和32位MD5值.-MD5 encryption of C# to achieve. Can be encrypted 16 and 32-bit MD5 value.
MD5
- md5哈希算法源码,摘要信息、摘要消息的长度256,摘要为16-md5 hash algorithm source code
md5
- 此程序只适合用于扫描弱密码,如:密码全部是数字或密码位数很短等都属于弱密码 破解的时间长短取决于密码的位数和你是否选择正确的扫描方式 此程序每秒可扫描60个密码,如果你的密码是三位数字的。。三位数字只有10*10*10=1000个密码组合,即最长只用1000/60=16秒钟就可以扫描出任何的三位数字密码。。其它的情况于此类推 以下的几种情况将无法破解密码:1)你选择数字扫描密码,但密码中有字母时,2)你选择字母扫描密码,密码只是由数字组成时。。3)密码中含有特殊字符时将无法破解
md5
- java程序md5加密源码,需要的朋友可以下载看看参考下,此源码加密是以16进制算法加密。-md5 encryption java program source code, you can download to see a friend in need reference, this source is 16 hexadecimal encryption algorithm for encryption.
md5
- MD5算法是一种消息摘要算法(Message Digest Algorithm),此算法以任意长度的信息(message) 作为输入进行计算,产生一个128-bit(16-byte)的指纹或报文摘要(fingerprint or message digest)。两个不同的message产生相同message digest的几率相当小,从一个给定的message digest逆向产生原始message更是困难(不过也有可能从message digest构造(message),因此MD5算法适合用在
testc
- DES MD5 (16bit)加密算法-DES MD5 (16bit)加
md5
- MD5算法的实现以及分析,主循环有四轮(MD4只有三轮),每轮循环都很相似。第一轮进行16次操作。每次操作对a、b、c和d中的其中三个作一次非线性函数运算,然后将所得结果加上第四个变量,文本的一个子分组和一个常数。再将所得结果向右环移一个不定的数,并加上a、b、c或d中之一。最后用该结果取代a、b、c或d中之一。-MD5 algorithm implementation and analysis, the main loop there are four rounds (MD4 only thr
md5
- MD5即Message-Digest Algorithm 5(信息-摘要算法 5),用于确保信息传输完整一致。是计算机广泛使用的散列算法之一(又译摘要算法、哈希算法),主流编程语言普遍已有MD5实现。这里是C语言的具体实现-he MD5 Message-Digest Algorithm is a widely used cryptographic hash function that produces a 128-bit (16-byte) hash value. Specified in RF
MD5
- md5加密工具,可加密为32位或16位,希望对大家有用。-md5 encryption tool to encrypt 32-bit or 16-bit
md5
- 本源码介绍了在VB6中如何实现MD5的16位和32位加密方法。-This source describes how in VB6 MD5 16-bit and 32-bit encryption.
MD5
- MD5 Rivest在1989年开发出MD2算法。在这个算法中,首先对信息进行数据补位,使信息的字节长度是16的倍数。然后,以一个16位的检验和追加到信息末尾,并且根据这个新产生的信息计算出散列值。后来,Rogier和Chauvaud发现如果忽略了检验将和MD2产生冲突。MD2算法加密后结果是唯一的(即不同信息加密后的结果不同-MD5 Message Digest Algorithm MD5
MD5
- MD5加密算法,用java实现密码加密,输出16位或者32加密后的密码-java for MD5 java for MD5 java for MD5 java for MD5
md5
- The core of the MD5 algorithm, this alters an existing MD5 hash to reflect the addition of 16 longwords of new data. MD5Update blocks the data and converts bytes into longwords for this routine for Linux.
MD5
- MD5算法:MD5以512位分组来处理输入的信息,且每一分组又被划分为16个32位子分组,经过了一系列的处理后,算法的输出由四个32位分组组成,将这四个32位分组级联后将生成一个128位散列值-The MD5 algorithm: MD5 with 512 bit block to process input information, and each group was divided into 16 groups of 32 seats, after a series of processi
md5
- MD5算法,内含字符串与文件转MD5,有16位与32位算,在很多产品上应用过,久经考验,绝无错误。-MD5 algorithm, containing the string and file transfer MD5, 16 and 32, and used in many products tested, without error.
md5
- MD5 压缩算法,将任意字符串经过MD5计算,转换成128bit的16进制字符串。(MD5 compression algorithm converts any string to a 128-bit hexadecimal string after MD5 calculation.)
MD5
- public static String MD5(String inStr) { MessageDigest md5 = null; try { md5 = MessageDigest.getInstance("MD5"); } catch (Exception e) { System.out.println(e.toString()); e.p