-
这个是数据加密标准的VC算法
这个是数据加密标准的VC算法-This is a standard data encrypt algorithm of VC
- 2022-03-13 08:51:08下载
- 积分:1
-
JPEG2000 image format for the use of the Arnold transform the image of the wavel...
针对JPEG2000格式的图像,利用了Arnold变换对图像的小波系数进行加密,对初步研究JPEG2000图像加密算法的有试用价值-JPEG2000 image format for the use of the Arnold transform the image of the wavelet coefficients encryption, preliminary study of the JPEG2000 image encryption algorithms have tested the value of
- 2022-03-02 04:18:08下载
- 积分:1
-
基于改进算法的加密算法
用des加密算法的改进算法-des encryption algorithm using the improved algorithm
- 2022-10-15 13:20:03下载
- 积分:1
-
RC4加密源代码,用C++编写,全套源代码,很齐全,测试过没有任何问题放心使用...
RC4加密源代码,用C++编写,全套源代码,很齐全,测试过没有任何问题放心使用-RC4 encryption source code, using C++ Prepared a full set of source code, it is complete, tested ease of use there is no problem
- 2023-07-26 12:10:04下载
- 积分:1
-
使用openssl库,公钥对数据进行加密的dll库的源代码
使用openssl库,公钥对数据进行加密的dll库的源代码-Using openssl library, public key data encryption dll library source code
- 2022-03-18 05:44:34下载
- 积分:1
-
MD5加密算法源代码,个人感觉相当有学习的热的价值,希望大家共同学习,共同进步....
MD5加密算法源代码,个人感觉相当有学习的热的价值,希望大家共同学习,共同进步.-MD5 encryption algorithm source code, personal feeling quite hot the value of learning, I hope everyone learn together and seek common progress.
- 2023-04-17 22:30:03下载
- 积分:1
-
程序在VB
Program In VB
- 2022-02-26 22:20:14下载
- 积分:1
-
AES(The Advanced Encryption Standard)是美国国家标准与技术研究所用于加密电子数据的规范...
AES(The Advanced Encryption Standard)是美国国家标准与技术研究所用于加密电子数据的规范-AES (The Advanced Encryption Standard) is the National Institute of Standards and Technology for the electronic data encryption standard
- 2022-01-31 23:58:32下载
- 积分:1
-
RSA密聊,用于网络上实现公锁和私锁的算法。
RSA密聊,用于网络上实现公锁和私锁的算法。-RSA secret chat for the network to achieve public and private lock lock algorithms.
- 2023-02-01 01:00:03下载
- 积分: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