搜索资源列表
3DES
- 3DES加密算法~~~~~~~ 密码学课程设计
AES
- AES加密算法 密码学课程设计
DeS
- DES加解密算法~~~~~~~密码学课程设计
RC4
- RC4加解密算法~~~~~~ 密码学课程设计
SHA512
- SHA12加解密算法~~~~~~ 密码学课程设计
密码学四个基本加密程序
- 用于学习密码学的四个基本加密源程序,可以帮助你更好地理解基本的加密算法思想.(均是本人的课程设计)-learning cryptography for the four basic encryption source, I can help you better understand the basic thinking of the encryption algorithm. (All my course design)
AES
- ASE算法实现 C++ MFC 密码学课程设计-ASE algorithm C++ MFC Cryptography Course Design
mm
- 一个AES加解密工具,可以用指定的密码字符串加解密任意大小的文件。密钥长度128位,工作模式为CBC。算法比较原始,速度不快。另有演示AES加密过程的选项。程序为字符界面,支持命令行参数。开发环境为Code::Blocks 10.05(gcc 4.4.3)。此为某大密码学课程设计,仅供学习交流使用。-An Win32 console file encryption/decryption tool using the AES-128 CBC-mode algorithm.
AES_mimaxue_kechengsheji
- 密码学 AES算法课程设计 实现字符串以及文件加解密 界面很好 附有课程设计文档-Cryptography Course Design and Implementation of AES algorithm is a string and file encryption and decryption interface well with a course design document
AES_mimaxue
- 再来一个密码学课程设计 AES加解密算法 字符串 文件加密解密 功能更强大-Again a cryptography course design AES encryption and decryption algorithm is a string more powerful file encryption and decryption
3des
- 实现3DES加密解密的系统。。。应用密码学课程设计-complete 3des encrypt and desencrypt
Cryptography-course-design
- 密码学课程设计,des加密算法,rsa加密算法-Cryptography course design, des encryption algorithm, rsa encryption algorithm
MD5
- 密码学课程设计,MD5算法的实现,一个很完整的MD5算法-Curriculum design cryptography, MD5 algorithm, MD5 algorithm a very complete
BigInt_cpp
- 本程序的编写思路是,把所有输入的数字当作字符串进行处理,进行强制转换成整形数据,然后模仿笔算方法,对整形数据进行处理,最后得到的数据,再次转换成字符串类型,并存储输出。本程序运行速度快、功能强,是作者于完成应用密码学课程设计时编写而成的,经反复测试无误。-The procedures for the preparation ideas, the number of all input as string processing, cast into plastic data, and then i
AES
- AES算法设计,大学做的密码学课程设计,包含课程设计报告,-AES algorithm design, University of cryptography course design, including curriculum design report,
DES
- 密码学课程设计要求的内容,密码学加密算法DES算法的JAVA实现-The content of curriculum design requirements of cryptography, cryptography algorithm DES algorithm JAVA implementation
RSA
- 密码学课程设计要求的内容,密码学加密算法RSA 算法的JAVA实现-The content of curriculum design requirements of cryptography, cryptography algorithm RSA algorithm JAVA implementation
AES
- AES加解密算法 .h文件 C语言编写 原创 密码学课程设计
test
- 密码学生成随机大素数和随机数,密码学课程设计可用-Random numbers and random numbers
rsa
- 1.问题描述 RSA密码系统可具体描述为:取两个大素数p和q,令n=pq,N=(p-1)(q-1),随机选择整数d,满足gcd(d,N)=1,ed=1 modN。 公开密钥:k1=(n,e) 私有密钥:k2=(p,q,d) 加密算法:对于待加密消息m,其对应的密文为c=E(m)=me(modn) 解密算法:D(c)=cd(modn) 2.基本要求 p,q,d,e参数选取合理,程序要求界面友好,自动化程度高。 4. 实现提示 要实现一个真实的RSA密码系统,主要考虑对大整数的处理。P