搜索资源列表
rsa1
- rsa代码,可以正常运行,是我的密码学的课程设计
3DES
- 3DES加密算法~~~~~~~ 密码学课程设计
AES
- AES加密算法 密码学课程设计
DeS
- DES加解密算法~~~~~~~密码学课程设计
RC4
- RC4加解密算法~~~~~~ 密码学课程设计
SHA512
- SHA12加解密算法~~~~~~ 密码学课程设计
dashujisuanqi
- 大数计算器,有加减乘乘方求余求逆 可用于密码学的课程设计。
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.
DES_zyj
- 密码学的课程设计 实现DES加密解密功能。 -Cryptography curriculum design to achieve DES encryption and decryption functions.
DES3
- DES的完整实现!是我们密码学的课程设计-DES to achieve complete!
3des
- 实现3DES加密解密的系统。。。应用密码学课程设计-complete 3des encrypt and desencrypt
DES
- 密码学DES算法的实现,课程设计必须的。-Cryptography DES algorithm, curriculum design necessary.
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
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语言编写 原创 密码学课程设计
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