搜索资源列表
aes.rar
- AES加密解密算法的C语言源程序,网络安全课程设计用,AES encryption and decryption algorithm of the C language source code, network security design courses
AES
- ASE算法实现 C++ MFC 密码学课程设计-ASE algorithm C++ MFC Cryptography Course Design
Cpp_EDstar
- 用C++编写的文件加密程序,可用于C++课程的课程设计。-Written in C++, file encryption program, can be used to C++ course curriculum.
3_DES
- 对称密码设计与实现课程的作业,有完整代码及详细注释。同时还附上报告文档,希望对你有帮助。 3DES算法的c语言实现,-Symmetrical password design and implementation course work, have complete code and detailed notes. At the same time also attached document report, and I hope to help you. 3 the c language
vbPdll
- 用c++ atl实现的用于加密的dll com组件,用vb调用,按课程设计2的要求-Atl c++ implemented for encryption dll com, component, vb call, curriculum design
15
- 课程设计用C语言实现AES的加密解密 易于学习-Curriculum design and implementation of AES encryption and decryption using C language is easy to learn
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