搜索资源列表
kenel_crypto
- 内核加解密算法 加解密函数库及其使用说明,详见附件。 find_cipher_by_name中参数ciphername可取的值为下面的组合,对应不同的模式: (des,des_ede3,aes,blowfish,cast5,dfc,idea,mars,rc5,rc6,serpent,twofish)-ecb (des,des_ede3,aes,blowfish,cast5,dfc,idea,mars,rc5,rc6,serpent,twofish)-cbc (des,des_ede3,aes,b
linux-MD5
- 毕业设计,md5在linux下的性能测试,加了linux下的时间测试函数!当然也可以加密解密!-graduation design, md5 linux in the performance tests, the increase of time under linux test function! Of course, we can decrypt encrypted!
300_encrypt
- 加密算法 Test Driver for Crypto++, a C++ Class Library of Cryptographic Primitives: - To generate an RSA key cryptest g - To encrypt and decrypt a string using RSA cryptest r - To calculate MD5, SHS, and RIPEMD-160 message digests:
MD5
- DELPHI MD5加密 1、 MD5String、MD5File、MD5Print、MD5Match这四个函数是供调用的。其他是用来辅助这几个函数的子函数。 2、MD5String为加密字符串。 3、MD5File为加密这个文件。 4、MD5Print是将加密后的密文转换成字符串。 5、MD5Match是用来比较密文是否一致。-DELPHI MD5 encryption 1, MD5String, MD5File, MD5Print, MD5Match the four f
java_DigitalSign
- 实用数字签名的步骤 (1)发送方使用MD5算法对原始信息进行计算,获得一个固定长度的信息摘要 (2)发送方用自己的私钥加密生成的信息生成发送方的数字签名,发送方把这个数字签名作为发送信息的附件和明文信息,一同用接收方的公钥进行加密,将加密后的密文一同发送给接收方; (3)接收方首先把接收到的密文用自己的私钥解密,得到明文信息和数字签名,再用发送方的公钥对数字签名进行解密,然后使用相同的单向散列算法来计算解密得到的明文信息,得到信息摘要;对比计算出来的信息摘要和发送方发送过来的信息摘要
MD5
- 标准C++写的使用MD5算法加密和解密的代码,这个代码测试可以使用。-Written in standard C++ using the MD5 algorithm to encrypt and decrypt the code, this code test can be used.
MD5andKL
- 此文件上传的主要原因是他能够加密解密MD5-The file is mainly due to he was able to decrypt MD5 encryption
RSA_MD5
- encrypt and decrypt RSA-MD5
xm_md5_1_1
- 西盟MD5加密与解密系统 1.1 免费版 本系统可实现16位、32位MD5加密与解密,具体功能特点如下: 1.通过MD5原值与加密值对比数据库查询,实现16位与32位MD5的加密与解密 2.用户每次加密时,程序将自动查询数据库,若数据库中无此条数据,将自动补充数据库 3.解密时,自动判断MD5位数。 4.拥有强大的管理后台,后台有批量生成MD5数据功能,10秒钟可生成MD5数据5000条,目前本系统数据库中已拥有MD5加密码20000(由数字1-20000的值的MD5加
MD5
- 使用MD5算法对指定TXT文档内的内容进行加密。可反向进行解密。-MD5 algorithm used within the specified TXT encrypt the contents of the document. Can decrypt the reverse.
Password
- 密码加密与解密 对字符串进行MD5编码,并进行解密-Password encryption and decryption of the MD5 encoded string and decrypt
c-md5
- 数据加密的基本过程就是对原来为明文的文件或数据按某种算法进行处理,使其成为不可读的一段代码,通常称为“密文”,使其只能在输入相应的密钥之后才能显示出本来内容,通过这样的途径来达到保护数据不被非法人窃取、阅读的目的。 该过程的逆过程为解密,即将该编码信息转化为其原来数据的过程。 是MD5算法设计 -The basic process of data encryption is to express the original documents or data processed by a
MD5
- 使用MD5算法的一个文件加密和解密系统。-MD5 algorithm used to encrypt and decrypt a file system.
MD5
- 方便对加密数据进行MD5解密,集合众多的MD5解密网站,可以通过软件在线破解MD5密码。-Facilitate the decryption of encrypted data to MD5, MD5 decrypt a large number of collection sites, online software can crack MD5 passwords.
MD5
- MD5加密解密工具,新出现的MD5值自动加到数据库,本地找不到继续到网络上找,网络上找不到就生成新的Md5比对。-The MD5 encrypts to decrypt tool, lately- appeared MD5 valueses automatically add a database, local can not find to continue to seek in the network, can not find born new Md5 to compare a right
md5
- MD5 Crypt/Decrypt Algorithm. Written in C++.
MD5-Encryption-Algorithm-VCPP
- MD5是一个安全的散列算法,输入两个不同的明文不会得到相同的输出值,根据输出值,不能得到原始的明文,即其过程不可逆;所以要解密MD5没有现成的算法,只能用穷举法,把可能出现的明文,用MD5算法散列之后,把得到的散列值和原始的数据形成一个一对一的映射表,通过比在表中比破解密码的MD5算法散列值,通过匹配从映射表中找出破解密码所对应的原始明文。 对信息系统或者网站系统来说,MD5算法主要用在用户注册口令的加密,对于普通强度的口令加密,可以通过以下三种方式进行破解: (1)在线查询密码。一些在
Md5Test
- MD5码加密生成及解密,MD5码加密生成及解密-Encrypt and decrypt MD5 code generation
MD5
- 非对称密码技术的实现 (1)熟悉RSA相关函数(公私钥生成函数,加密/解密函数); (2)利用公钥加密特定文件(test-1.txt),并用私钥进行解密;反过来,再利用私钥加密特定文件,并用公钥进行解密。对比解密后的文件与原始文件是否一致。 -Achieve asymmetric cryptographic techniques (1) be familiar with RSA-related functions (public and private key generation
md5jmjm
- md5工具,简单的md5加密解密工具,进行的md5转换,简单实用,加密可用解密有点问题(md5 tools,simple md5 encryption Decrypt tool)