-
该源码描述了DES加密算法的硬件语言实现方式
该源码描述了DES加密算法的硬件语言实现方式-The source described the hardware DES encryption algorithm realize the way language
- 2022-03-12 23:50:16下载
- 积分:1
-
md5encode
MD5加密算法,可以加密包含二进制数据的数据块,生成16字节MD5加密数据。(MD5 encryption algorithm to encrypt data blocks that contain binary data, generates a 16-byte MD5 encrypted data.)
- 2013-09-09 18:27:10下载
- 积分:1
-
functions
base64实现,实现加密解密的所有功能(base64 function)
- 2013-11-20 13:27:15下载
- 积分:1
-
Java Cryptography and source code
Java Cryptography and source code
- 2022-06-20 08:23:42下载
- 积分:1
-
SHA1 message digest algorithm, SHA1 message digest algorithm
SHA1消息摘要算法, SHA1消息摘要算法-SHA1 message digest algorithm, SHA1 message digest algorithm
- 2022-07-28 06:02:21下载
- 积分:1
-
本包内容包括信息系统安全工程课程中的密码学基础、公钥加密与RSA、分组密码与DES共3个章节的内容,原汁原味的老师课堂讲义~包你喜欢~~!...
本包内容包括信息系统安全工程课程中的密码学基础、公钥加密与RSA、分组密码与DES共3个章节的内容,原汁原味的老师课堂讲义~包你喜欢~~!-This package includes information systems security engineering curriculum-based cryptography, public key encryption and RSA, block cipher with DES a total of three sections, authentic classroom teacher handouts ~ package you like ~ ~!
- 2022-06-01 15:05:02下载
- 积分:1
-
myecho
利用人耳朵的时域掩蔽效应,实现回声隐藏。(Using human ear temporal masking, to achieve echo hiding.)
- 2010-05-20 11:31:03下载
- 积分:1
-
Ajiami
简单的加密和解密程序,用于软件注册码的生成(Simple encryption and decryption procedures for license generation software)
- 2014-05-04 18:02:16下载
- 积分:1
-
dES
des算法的小程序,大家可以看看,参考一下,可能会有帮助(des algorithm for small procedures, everyone can see, reference may be helpful)
- 2008-05-22 00:29:24下载
- 积分:1
-
Base64 加密算法(Author 蒋柏良 Jerry Jiang)
Base64 加密算法(Author 蒋柏良 Jerry Jiang)-*
* DESCRIPTION
* Base64 processes input in 24bit chunks by converting each chunk into 4
* bytes of output. It does so by splitting input into four 6bit groups and
* using these as indexes in the following substitution table-
* const char base64_map[] =
* "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
* "abcdefghijklmnopqrstuvwxyz"
* "0123456789+/"
* If an input is not a multiple of 3 bytes, it s padded with zeros. In
* this case the output bytes that consist entirely of the pad data are
* replaced with = .
*
* Example
* An input of 0x00 0x45 0xF2 is equivalent to 00000000 01000101 11110010
* bit sequence, which s then split into 000000 000100 010111 110010
* and these are substituted to produce the following base64 encoding
* A E X y
*
* RETURN VALUE
* b64_length() should return output length for the input of len bytes.
* b64_encode() should encode len bytes from src int
- 2022-07-18 16:55:26下载
- 积分:1