实例介绍
(源码)东北大学软件学院信息安全程序实践三 MFC可视化界面编程 程序内容包含经典加解密和现代加解密的各种加解密方法,像凯撒,列置换,Playfair,RSA ,RC4等等。需要的朋友可以参考一下
【实例截图】
【核心代码】
4744300845147366007.rar
└── 密码
├── casear.txt
├── Cryptology
│ └── Cryptology
│ ├── CaesarPropertyPage.cpp
│ ├── CaesarPropertyPage.h
│ ├── Cryptology.aps
│ ├── Cryptology.clw
│ ├── Cryptology.cpp
│ ├── CryptologyDlg.cpp
│ ├── CryptologyDlg.h
│ ├── Cryptology.dsp
│ ├── Cryptology.dsw
│ ├── Cryptology.h
│ ├── Cryptology.ncb
│ ├── Cryptology.opt
│ ├── Cryptology.plg
│ ├── Cryptology.rc
│ ├── Cryptology.sln
│ ├── Cryptology.suo
│ ├── Cryptology.vcproj
│ ├── Cryptology.vcproj.pc40.Administrator.user
│ ├── Debug
│ │ ├── CaesarPropertyPage.obj
│ │ ├── CaesarPropertyPage.sbr
│ │ ├── CryptologyDlg.obj
│ │ ├── CryptologyDlg.sbr
│ │ ├── Cryptology.exe
│ │ ├── Cryptology.ilk
│ │ ├── Cryptology.obj
│ │ ├── Cryptology.pch
│ │ ├── Cryptology.pdb
│ │ ├── Cryptology.res
│ │ ├── Cryptology.sbr
│ │ ├── DecryptKeyDlg.obj
│ │ ├── DecryptKeyDlg.sbr
│ │ ├── DESPropertyPage.obj
│ │ ├── DESPropertyPage.sbr
│ │ ├── DHPropertyPage.obj
│ │ ├── DHPropertyPage.sbr
│ │ ├── KeyDlg1.obj
│ │ ├── KeyDlg1.sbr
│ │ ├── MyPropertySheet.obj
│ │ ├── MyPropertySheet.sbr
│ │ ├── NetworkPropertyPage.obj
│ │ ├── NetworkPropertyPage.sbr
│ │ ├── PermutationPropertyPage.obj
│ │ ├── PermutationPropertyPage.sbr
│ │ ├── PlayfairPropertyPage.obj
│ │ ├── PlayfairPropertyPage.sbr
│ │ ├── RC4PropertyPage.obj
│ │ ├── RC4PropertyPage.sbr
│ │ ├── RsaA.obj
│ │ ├── RsaA.sbr
│ │ ├── RSAPropertyPage.obj
│ │ ├── RSAPropertyPage.sbr
│ │ ├── StdAfx.obj
│ │ ├── StdAfx.sbr
│ │ ├── vc60.idb
│ │ ├── vc60.pdb
│ │ ├── VigenerePropertyPage.obj
│ │ └── VigenerePropertyPage.sbr
│ ├── DecryptKeyDlg.cpp
│ ├── DecryptKeyDlg.h
│ ├── DESPropertyPage.cpp
│ ├── DESPropertyPage.h
│ ├── DHPropertyPage.cpp
│ ├── DHPropertyPage.h
│ ├── KeyDlg1.cpp
│ ├── KeyDlg1.h
│ ├── KeyDlg.cpp
│ ├── KeyDlg.h
│ ├── MyPropertySheet.cpp
│ ├── MyPropertySheet.h
│ ├── NetworkPropertyPage.cpp
│ ├── NetworkPropertyPage.h
│ ├── PermutationPropertyPage.cpp
│ ├── PermutationPropertyPage.h
│ ├── PlayfairPropertyPage.cpp
│ ├── PlayfairPropertyPage.h
│ ├── RC4PropertyPage.cpp
│ ├── RC4PropertyPage.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── Cryptology.ico
│ │ ├── Cryptology.rc2
│ │ ├── DDlogo.bmp
│ │ ├── dlysxy.ico
│ │ └── NEU.BMP
│ ├── resource.h
│ ├── RsaA.cpp
│ ├── RsaA.h
│ ├── RSAPropertyPage.cpp
│ ├── RSAPropertyPage.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── VigenerePropertyPage.cpp
│ ├── VigenerePropertyPage.h
│ ├── 密钥二进制表示.dat
│ └── 明文二进制表示.dat
├── playfair.txt
├── RC4
│ └── RC4
│ ├── Debug
│ │ ├── RC4Dlg.obj
│ │ ├── RC4.exe
│ │ ├── RC4.ilk
│ │ ├── RC4.obj
│ │ ├── RC4.pch
│ │ ├── RC4.pdb
│ │ ├── RC4.res
│ │ ├── StdAfx.obj
│ │ ├── vc60.idb
│ │ └── vc60.pdb
│ ├── RC4.APS
│ ├── RC4.clw
│ ├── RC4.cpp
│ ├── RC4Dlg.cpp
│ ├── RC4Dlg.h
│ ├── RC4.dsp
│ ├── RC4.dsw
│ ├── RC4.h
│ ├── RC4.ncb
│ ├── RC4.opt
│ ├── RC4.plg
│ ├── RC4.rc
│ ├── RC4.sln
│ ├── RC4.suo
│ ├── RC4.vcproj
│ ├── RC4.vcproj.pc41.Administrator.user
│ ├── ReadMe.txt
│ ├── res
│ │ ├── RC4.ico
│ │ └── RC4.rc2
│ ├── resource.h
│ ├── StdAfx.cpp
│ └── StdAfx.h
└── RSA
└── RSA
├── Debug
│ ├── RSADlg.obj
│ ├── RSA.exe
│ ├── RSA.ilk
│ ├── RSA.obj
│ ├── RSA.pch
│ ├── RSA.pdb
│ ├── RSA.res
│ ├── StdAfx.obj
│ ├── vc60.idb
│ └── vc60.pdb
├── ReadMe.txt
├── res
│ ├── RSA.ico
│ └── RSA.rc2
├── resource.h
├── RSA.APS
├── RSA.clw
├── RSA.cpp
├── RSADlg.cpp
├── RSADlg.h
├── RSA.dsp
├── RSA.dsw
├── RSA.h
├── RSA.ncb
├── RSA.opt
├── RSA.plg
├── RSA.rc
├── StdAfx.cpp
└── StdAfx.h
13 directories, 156 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论