登录
首页 » Visual C++ » RSA

RSA

于 2020-10-12 发布 文件大小:2807KB
0 291
下载积分: 1 下载次数: 44

代码说明:

  用VC++开发的一款MFC程序,能很好地实现RSA加密和解密算法,对学习RSA加解密算法很有帮助(MFC with VC++ developed a program that can well realize RSA encryption and decryption algorithms, RSA encryption and decryption algorithms for learning helpful)

文件列表:

MyRSA
.....\debug
.....\.....\MyRSA.ilk,892840,2011-01-11
.....\MyRSA
.....\.....\Debug
.....\.....\.....\BuildLog.htm,7922,2011-01-11
.....\.....\KEY_PRODUCE.cpp,951,2011-01-06
.....\.....\KEY_PRODUCE.h,296,2011-01-06
.....\.....\MyRSA.aps,44108,2011-01-11
.....\.....\MyRSA.cpp,1636,2011-01-06
.....\.....\MyRSA.h,435,2011-01-06
.....\.....\MyRSA.rc,6234,2011-12-26
.....\.....\MyRSA.vcproj,5585,2011-01-06
.....\.....\MyRSA.vcproj.C846CE5FD1F348C.Administrator.user,1427,2011-01-11
.....\.....\MyRSA.vcproj.jsj100.Administrator.user,1409,2011-12-26
.....\.....\MyRSA.vcproj.jsj110.Administrator.user,1409,2011-01-07
.....\.....\MyRSADlg.cpp,11420,2011-01-11
.....\.....\MyRSADlg.h,1419,2011-12-26
.....\.....\ReadMe.txt,2727,2011-01-06
.....\.....\res

.....\.....\...\MyRSA.rc2,361,2011-01-06
.....\.....\resource.h,1827,2011-12-26
.....\.....\stdafx.cpp,136,2011-01-06
.....\.....\stdafx.h,2489,2011-01-06
.....\MyRSA.ncb,10202112,2011-01-11
.....\MyRSA.sln,880,2011-01-06

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • rsa
    rsa 实现代码,运用大数算法#include "afx.h" #include "Integer.h" #include <string> #include <iostream> using namespace std //构造大数对象并初始化为零 CInteger::CInteger() { m_nLength=1 for(int i=0 i<BI_MAXLEN i++)m_ulValue[i]=0 } //解构大数对象 CInteger::~CInteger() { } /*大数比较 调用方式:N.Cmp(A) 返回值:若N<A返回-1;若N=A返回0;若N>A返回1 */ int CInteger::Cmp(CInteger& A)(#include "afx.h" #include "Integer.h" #include <string> #include <iostream> using namespace std //构造大数对象并初始化为零 CInteger::CInteger() { m_nLength=1 for(int i=0 i<BI_MAXLEN i++)m_ulValue[i]=0 } //解构大数对象 CInteger::~CInteger() { } /*大数比较 调用方式:N.Cmp(A) 返回值:若N<A返回-1;若N=A返回0;若N>A返回1 */ int CInteger::Cmp(CInteger& A))
    2012-05-16 11:09:35下载
    积分:1
  • duobiaotidai
    一个周期3的多表代替密码,第1个表由密钥字法产生(密钥字自拟),第2个表由洗牌法产生(注意,字母a~z与数字0~25一一对应),第三个表由公式法产生(数学公式自拟,注意它须是Z26上的一个一一变换)(a cycle of three multi-table instead of passwords, a table by key word method, (key word from the intended), Table No. 2 produced by shuffling method (note, a letter with a number of z ~ 0 ~ 25 he gathers), 3rd tables generated by the formula (from the proposed mathematical formula, it should pay attention to the Z26 is a transformation on January 1))
    2006-10-10 17:33:56下载
    积分:1
  • ECCCBuilder
    说明:  ECC实现加密解密功能,系统参数的生成!(ECC to achieve encryption and decryption functions, system parameter generation!)
    2010-03-28 18:27:24下载
    积分:1
  • dogsn
    rockey6加密狗 dogsn名称为3000(dogsn3000)
    2010-06-29 00:12:28下载
    积分:1
  • RSA
    自己写的一份RSA算法。可正常执行。控制台程序。(Write your own copy of the RSA algorithm. Can be performed normally. Console program.)
    2013-10-21 00:34:18下载
    积分:1
  • Cryptography-and-Network-Security
    用C/C++实现加解密算法及其应用:DES(或AES)和基于DES(或AES)的CMAC。(With C/C++ achieve encryption and decryption algorithm and its application: DES (or AES) and based on DES (or AES) of CMAC.)
    2013-11-01 15:00:05下载
    积分:1
  • MD5_RSA
    本源代码,综合了DES,RSA,MD5等几种加密的方法于同一工程中,可以让读者对各种加密方法的实现通过代码实现过程的比较,更好的理解几种软件加密方法(Source code, a combination of DES, RSA, MD5 encryption method, such as several in the same project, will allow readers to a variety of encryption methods to achieve the realization of the process through code comparison, a better understanding of several software encryption methods)
    2008-05-19 09:32:33下载
    积分:1
  • NHD
    程序采用当前最先进的Rijndael算法作为核心算法,带有可变块长和可变密钥长度的迭代块密码。块长和密钥长度可以分别指定成 128、192 或 256 位。多线程操作,保证加密时程序界面流畅,加密速度大约9M每秒。(Procedures using the most advanced as a core algorithm Rijndael algorithm with variable block length and variable key length of the iterative block password. Block length and key length can be specified as 128,192 or 256. Multi-threaded operation, to ensure smooth program interface encryption, encryption speed of about 9M per second.)
    2009-07-16 18:38:49下载
    积分:1
  • DESsystem
    说明:  DES加密算法,C++编写,有界面有录像,写的很详细的大项目(DES encryption algorithm, C++ written, there is a video interface, written in large projects in great detail)
    2011-04-10 21:12:01下载
    积分:1
  • sqlcipher_vs2008
    支持加密Sqllite库,vs2008 + sqlite3 + sqlcipher,测试可用(Supports encryption Sqllite library, VS2008+ SQLite3+ sqlcipher, testing available)
    2020-06-26 18:00:02下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载