登录

最新会员 最新下载

成为了本站VIP会员

04月30日 12:23

成为了本站VIP会员

04月29日 21:46

成为了本站VIP会员

04月26日 23:14

成为了本站VIP会员

04月25日 21:33

成为了本站VIP会员

04月23日 14:46

成为了本站VIP会员

04月18日 20:09
已选条件
  1. 编程语言:C++
  2. 代码类别:加密解密
  3. 发布时间:不限
全部撤销
编程语言 更多 收起
代码类别 更多 收起
发布时间
更多选项

1. Ibe_dec

  IBE基于身份的加密系统的解密程序,使用VC6.0开发(IBE identity-based encryption system of the decryption process, using VC6.0 Development)

133
下载
115
浏览
2020-06-29发布

2. Ibe_ext

  IBE基于身份的加密系统的身份提取程序,使用VC6.0开发,即把身份转换成椭圆曲线上的点(IBE identity-based encryption system of the identity of extraction procedures, using VC6.0 development, namely, the identity into a point on the elliptic curve)

147
下载
105
浏览
2020-06-29发布

3. spn

  SPN密码实现和分析(也就是破解),通过文件读入!(SPN password implementation and analysis (ie cracked), read through the file!)

14
下载
119
浏览
2020-06-29发布

4. AES-with-ECC

  本文使用ECC加密AES的密钥,再由AES加密明文内容,AES加密强度大,速度快,但是密钥更新繁琐和不安全,由强度很大的非对称密钥算法对AES密钥加密,结合了两方的优点(this programme combine the ECC with AES.using the ECC to cipher the AES key,and using the AES to cipher the m)

21
下载
92
浏览
2020-06-29发布

5. wugacsp 非对称钥的生成、导入、导出、

  这两个工程主要用CSP 1、CSPTEST 写的比较乱 主要是给当时一个朋友做参考调用的 完成非对称密钥的生成、导入、导出、加密、解密、对称的加密解密、签名、验证。 2、CSTTEST2 写的比前个好些,但是平时上班,下班自己也要写论文,所以花的时间也不太多,很多地方都偷懒了。比如文件大小我没有用NEW 而且指定了1024 有需要的朋友可以自己修改。这个工程主要是非对称的密钥的导出和导入,还有就是会话密钥的操作。(these two works mainly with a CSP. CSPTEST comparison was made mainly to the chaos when a friend called to refer to the completion of the non-symmetric key generation, importing and exporting, encryption, decryption, symmetric encryption and decryption, signature, the certification. 2, CSTTEST2 write better than in the previous months, but usually go to work and finish their own toilet paper so I spent the time is not too much, all of the lazy. For instance, file size I have not used the NEW 1024 and designated a need to amend their friends. The project mainly non-symmetric keys to the Export and Import, there is the session key operation.)

48
下载
96
浏览
2020-06-27发布

6. sqlcipher_vs2008

  支持加密Sqllite库,vs2008 + sqlite3 + sqlcipher,测试可用(Supports encryption Sqllite library, VS2008+ SQLite3+ sqlcipher, testing available)

46
下载
86
浏览
2020-06-26发布

7. rsa1

  RSA加密/解密算法源码 (RSA encryption and decryption algorithm source code)

5466
下载
59
浏览
2020-06-26发布

8. des

  DES加密算法实现的C++类 (DES cryptographic algorithm for C)

6024
下载
84
浏览
2020-06-26发布

9. CRC校验程序

  CRC校验程序,使用了CRC-16和CRC-CCITT方法 (CRC inspection program, which use crc-16 and crc-ccitt method)

3929
下载
81
浏览
2020-06-26发布

10. crypt

  一个简单加解密的小程序 (A simple encryption and decryption program)

3323
下载
74
浏览
2020-06-26发布

11. rsa1.03

  rsa算法实现,包含文档(The implement of RSA algorithm including document.)

3795
下载
49
浏览
2020-06-26发布

12. QQAlbum

  VC++实验QQ加密相册查看器,输入QQ号即显示相片,源码宝贵,请速下载:-)(VC experimental QQ encryption album viewer, the importation of QQ, which indicates that the photographs, source of valuable information to offer is urged to download :-))

4771
下载
87
浏览
2020-06-26发布

13. 网络编程编写客户端与服务端的成语词典

  网络编程编写客户端与服务端的成语词典,内含SQL list数据库(Write idiom dictionary of client and server by network programming, including SQL list database)

0
下载
70
浏览
2020-06-25发布

14. 成语词典

说明:  网络编程编写客户端与服务端的成语词典,内含SQL list数据库(Write idiom dictionary of client and server by network programming, including SQL list database)

1
下载
52
浏览
2020-06-25发布

15. 5

说明:  基于MD5的文件完整性检测程序,共包含4个文件:md5.h、md5.cpp、test.cpp、nankai.txt。编译:命令行模式下,切换到代码所在目录,输入make后回车即可。(The file integrity testing program based on MD5 contains 4 files: md5.h, md5.cpp, test.cpp, nankai.txt. Compile: In the command line mode, switch to the directory where the code is located, enter make, and press Enter.)

0
下载
74
浏览
2020-06-22发布

16. DES_3DES

  DES算法是这样工作的:如Mode为加密,则用Key 去把数据Data进行加密, 生成Data的密码形式(64位)作为DES的输出结果;如Mode为解密,则用Key去把密码形式的数据Data解密,还原为Data的明码形式(64位)作为DES的输出结果。在通信网络的两端,双方约定一致的Key,在通信的源点用Key对核心数据进行DES加密,然后以密码形式在公共通信网(如电话网)中传输到通信网络的终点,数据到达目的地后,用同样的Key对密码数据进行解密,便再现了明码形式的核心数据。这样,便保证了核心数据(如PIN、MAC等)在公共通信网中传输的安全性和可靠性。   通过定期在通信网络的源端和目的端同时改用新的Key,便能更进一步提高数据的保密性,这正是现在金融交易 网络的流行做法。 下面是DES原理及实现步骤,以及VC++关于DES加密解密的详细源程序(Complete source code, calling process, detailed explanation of the principle)

1
下载
50
浏览
2020-06-19发布

17. DES_3DES

说明:  DES算法是这样工作的:如Mode为加密,则用Key 去把数据Data进行加密, 生成Data的密码形式(64位)作为DES的输出结果;如Mode为解密,则用Key去把密码形式的数据Data解密,还原为Data的明码形式(64位)作为DES的输出结果。在通信网络的两端,双方约定一致的Key,在通信的源点用Key对核心数据进行DES加密,然后以密码形式在公共通信网(如电话网)中传输到通信网络的终点,数据到达目的地后,用同样的Key对密码数据进行解密,便再现了明码形式的核心数据。这样,便保证了核心数据(如PIN、MAC等)在公共通信网中传输的安全性和可靠性。   通过定期在通信网络的源端和目的端同时改用新的Key,便能更进一步提高数据的保密性,这正是现在金融交易 网络的流行做法。 下面是DES原理及实现步骤,以及VC++关于DES加密解密的详细源程序(Complete source code, calling process, detailed explanation of the principle)

2
下载
59
浏览
2020-06-19发布

18. DES的

说明:  DES的加密和解密。在VC++6.0下运行。(Des encryption and decryption)

2
下载
55
浏览
2020-06-19发布

19. des

  DES的加密和解密。在VC++6.0下运行。(Des encryption and decryption)

0
下载
58
浏览
2020-06-19发布

20. RSA的

说明:  RSA的加密和解密。运行在VC++6.0下。(RSA encryption and decryption)

3
下载
54
浏览
2020-06-19发布