-
Cryptography-and-Network-Security
用C/C++实现加解密算法及其应用:DES(或AES)和基于DES(或AES)的CMAC。(With C/C++ achieve encryption and decryption algorithm and its application: DES (or AES) and based on DES (or AES) of CMAC.)
- 2013-11-01 15:00:05下载
- 积分:1
-
373465435
基于VB的M5数学密码算法源码,有需要的就下载吧。(VB-based M5 mathematical algorithm source code, there is a need to download it.)
- 2013-08-13 23:07:29下载
- 积分:1
-
VI-password-crack
破解VI的密码,两种方法可用,MD5算法(Two methods for password crack of vi)
- 2021-05-13 20:30:02下载
- 积分:1
-
RC4_DLL
RC4解加密算法生成DLL动态库,密钥可以再程序里面写死或者外部导入!(The RC4 the Xie encryption algorithm to generate the DLL dynamic libraries, key can re-program inside hardcoded or external import!)
- 2012-08-23 18:44:25下载
- 积分:1
-
iPhone解锁
应用背景jhoom巴拉酒吧 ;jhoom巴拉酒吧关键技术在泰瑞MAA KI十字脉辛格
- 2022-03-13 00:27:06下载
- 积分:1
-
MD5
c++实现的MD5算法及测试代码,BCB2007的测试工程(c++ implementation of the MD5 algorithm and test code, BCB2007 test engineering)
- 2013-07-25 15:52:57下载
- 积分:1
-
IBE身份
IBE基于身份的加密系统的加密程序,使用VC6.0开发-IBE identity-based encryption system of the decryption process, using VC6.0 Development
- 2023-04-27 17:55:03下载
- 积分:1
-
compilation prepared by the BASE64 encoding and decoding
WIN 32 汇编编写的BASE64 的编码和解码-compilation prepared by the BASE64 encoding and decoding
- 2022-04-20 17:25:28下载
- 积分:1
-
SHA204A-SWI
基于ATSHA204的加密技术 ,保密性好,破解成本高,在传输线上没有密匙(ATSHA204 based encryption technology, security and good, high cost break in the transmission line is no key)
- 2017-03-03 11:59:18下载
- 积分: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