搜索资源列表
pin.rar
- C语言的字符串的加密与解密的各种方法
RC5-CTS
- RC5-CTS模式加密解密算法C++程序实现。 解压之后运行main.dsw.在VC++下面打开,执行之后根据显示首先输入密钥(随便输入不超过16字节的字符串),之后提示输入需要加密的plaintext文件,输入plaintext1.txt,这个文件在压缩包里已经存在,(注意一定要写清楚文件类型名,是个文本文件),然后根据提示输入加密文件名,可随便输入一个文件名,但是别忘记了类型名.txt,如ciphertext1.txt。因为不输入类型名将来无法打开。之后输入解密之后的文件名,可输入dec
md5_correct
- 修正了原CMd5类的CaculateStr函数的严重错误,并且转到新的C++类库。此类已经经过验证,文件和字符串均能得到正确结果,支持Unicode(Unicode时不需要转换)-amendment of the original CMd5 CaculateStr function of the type of serious errors and to the new C Class. Such has been validated, documents, and the string to
pin.rar
- C语言的字符串的加密与解密的各种方法,C language character string encryption and decipher each method
sha1
- SHA-1算法的C语言实现,求字符串的HASH-SHA-1 algorithm in C language implementation, find the string HASH
sha256
- SHA-256源代码,三个对外的函数:void SHA256Init (SHA256Context *sc) void SHA256Update (SHA256Context *sc, const void *data, uint32_t len) void SHA256Final (SHA256Context *sc, uint8_t hash[SHA256_HASH_SIZE]) 第一个函数初始化,第二个函数输入要hash的字符串,第三个函数输出结果-SHA-256 sou
des_code
- DES算法实现字符串加密,文件加密,C语言实现,-DES
DEncryptTest
- C++,加密程序,可自行调用动态链接库实现字符串加密解密-C++, encryption, self-called Dynamic Link Library string encryption and decryption
MD5加密的C++类例程
- 一个完整的MD5的加密器,可实现输出一个字符串,不错的-a complete MD5 encryption device that can achieve an output string of good
encrypt
- c# 字符串加密实例,类已经构建好,包含加密和解密两个方法-c# string encryption example, class has been constructed, and includes two ways to encrypt and decrypt
HuffmanCoding(usingClanguage)
- 哈夫曼编码(用C语言编写), 可对输入的字符串进行加密解密-Huffman Coding (using C language), can enter the string encryption and decryption
RSAencryption-decryption
- 基于RSA的加密/解密示例C#代码,采用字符串作为参数 -RSA-based encryption/decryption example C# code, the use of string as a parameter
vvvvvvv
- 使用C语言实现古典密码体制中的Vigenere密码,并加/解密一个字符串或文件-Using the C language implementation of the Vigenere classical cryptosystem password and encrypt/decrypt a string or a file
c-md5code
- 带密钥的md5算法库md5lib.h共有下列函数: char* MDString (char *) /*输入任意一个字符串,经过md5算法处理后,返回结果:一个定长(32个字符) 字符串 */ char* MDFile (char *) /*输入任意一个文件名,文件内容经过md5算法处理后,返回结果:一个定长 (32个字符)字符串 */ char* hmac_md5(char* text, char* key) /*输入任意一个字符串text,和一个用
hgsd
- 字符串加密算法 c#程序 String encryption algorithm-String encryption algorithm c# program String encryption algorithm
cryptopp54
- md5算法,用于任意长度的字符串加密,用C++语言编写-md5 algorithm, for any length of string encryption, using C++ language
StringEncodeAndDecode
- 用C#实现的字符串加密和解密类,大家可以参考下。-Implemented using C# to encrypt and decrypt a string class, you can refer to.
PassWordKey
- C#字符串加密工具,可以选择不同的密钥文字-C# string encryption tool, you can choose different key words
c++字符串简单加密
- 这是一个c++字符串简单加密Demo,可以参考学习。(This is a c + + string simple encryption Demo, you can refer to the study.)
base64
- Base64是网络上最常见的用于传输8Bit字节码的编码方式之一,Base64就是一种基于64个可打印字符来表示二进制数据的方法。可查看RFC2045~RFC2049,上面有MIME的详细规范。 Base64编码是从二进制到字符的过程,可用于在HTTP环境下传递较长的标识信息。例如,在Java Persistence系统Hibernate中,就采用了Base64来将一个较长的唯一标识符(一般为128-bit的UUID)编码为一个字符串,用作HTTP表单和HTTP GET URL中的参数。在其他