搜索资源列表
endecipher
- 网络信息安全课程设计 实现了DES RC4等八种加密解密算法-network information security programs designed to achieve the eight other RC4 DES encryption and decryption algorithm
RSA
- RSA加密程序,实现了大数类和大数运算,985高校的《计算机网络》课程设计,功能完整,注释丰富,没有BUG
dataencoding
- 实现数据加密,保护输入,验证码机制,为本人课程设计源代码。
polybios00
- polybios 加密算法课程设计报告 (含JAVA vc++两种语言)
jiajiemi
- 这是我们学校课程设计中的文件加解密的课题,可以对字符内容的文件进行加密解密。
3DES
- 3DES加密算法~~~~~~~ 密码学课程设计
AES
- AES加密算法 密码学课程设计
aes.rar
- AES加密解密算法的C语言源程序,网络安全课程设计用,AES encryption and decryption algorithm of the C language source code, network security design courses
DES
- 一个具有界面的简单的一重DES加密算法的实现,是我课程设计的作品,很简单啊-A simple interface, a re-DES encryption algorithm, is my course design work, is very simple ah! !
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.
MyEncypt
- 加密解密源程序,计算机安全课程设计,实现DES,3DES,AES加密解密,界面友好,操作简单-Encryption source code, computer security program design, implementation, DES, 3DES, AES encryption and decryption, user-friendly, simple operation
DES_zyj
- 密码学的课程设计 实现DES加密解密功能。 -Cryptography curriculum design to achieve DES encryption and decryption functions.
FileEncrypt
- 文件加密器,拥有图形界面,用于文件的加解密,为本人的课程设计。采用多线程设计,在加密文件的同时可实时显示进度。-File encryption devices, with graphical interface for file encryption and decryption, for my course design. Multi-threaded design, encrypted files can be real-time display of progress at the sam
Encrypt
- 文件加密器,实现了文件的加解密,拥有图形界面,多线程设计,可以在加解密的同时显示进度。本人的课程设计-File encryption devices to realize the file encryption and decryption, with graphical interface, multi-threaded design, you can display the progress of encryption and decryption at the same time. My
encrypt
- 简单的文件加密程序,希望站长保留,一些小课程设计可以用-Simple file encryption program, owners want to retain some small curriculum design can be
3des
- 实现3DES加密解密的系统。。。应用密码学课程设计-complete 3des encrypt and desencrypt
AES128
- AES 加密软件 密码课程设计--AES128位加密-AES encryption software password curriculum design- AES128 bit encryption
Affine-encryption-algorithm-design
- 算法设计之仿射加密——课程设计(内附jar文件)-Affine encryption algorithm design- course design (with jar file)
AES-
- AES加密解密 可直接作为课程设计,不需要改进,还自带文档-AES encryption and decryption can be directly used as curriculum design, does not need improvement, but also comes with a document
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