-
openssl 0.9.6版本,含多种加密算法,ssl,密钥管理,x509证书,pkcs标准等实现...
openssl 0.9.6版本,含多种加密算法,ssl,密钥管理,x509证书,pkcs标准等实现-openssl 0.9.6 version,includes sevral kinds of encryption algorithm,ssl,password administration,x509 certificate, realization of pkcs standard etc
- 2022-04-17 22:49:36下载
- 积分:1
-
aes 加密
AESåŠ å¯†
- 2023-05-12 05:00:03下载
- 积分:1
-
crytage和RSA 64位decryptage
crytage and decryptage with rsa 64 bits
- 2022-03-28 19:12:24下载
- 积分:1
-
凯撒和维吉尼亚加密方法,两种算法都不是很复杂,基本原理也相似所以都写入一个文件中来表示。...
凯撒和维吉尼亚加密方法,两种算法都不是很复杂,基本原理也相似所以都写入一个文件中来表示。-Caesar and Virginia encryption method, two algorithms are not very complicated, so the basic principles are also similar to a document written to express.
- 2022-12-14 15:10:03下载
- 积分:1
-
CRC32检查
CRC32 check
- 2022-05-14 20:02:15下载
- 积分:1
-
encryption algorithm, IDEA, symmetric key cryptography algorithm used in interne...
encryption algorithm, IDEA, symmetric key cryptography algorithm used in internet widly
- 2022-02-03 07:05:47下载
- 积分:1
-
AES Crypto PIC Code Example
AES Crypto PIC Code Example
- 2022-03-04 05:57:43下载
- 积分:1
-
MD5加密算法得VisualC++6.0源程序,直接调用里面的函数即可
MD5加密算法得VisualC++6.0源程序,直接调用里面的函数即可-MD5 Encryption Algorithm in Visual C++ 6.0 source code, direct calls to the function can be
- 2022-10-27 15:05:04下载
- 积分:1
-
Converst a bit array into a single byte and vice versa
Converst a bit array into a single byte and vice versa
- 2023-08-06 04:00:02下载
- 积分: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