资源简介
随机生成2个大素数,算出公钥私钥,实现加密解密
代码片段和文件信息
#include “Big.h“
#include
#include
#include
#include
using namespace std;
void Big::Output()
{
if(!negative)
cout<<‘-‘;
int i = length - 1;
cout<se(16)< for(;i >= 0;i--)
cout<se(16)< cout< }
void Big::Push_back(const long n)
{
numbers[length++] = n;
}
Big::Big(const long n0)
{
long n=n0;
length = 0;
if(n >= 0)
negative = true;
else
{
n = -n;
negative = false;
}
// unsigned long temp; // temp = n % 4294967296; //65536 * 65536
Push_back(n);
this->Clean();
}
void Big::Clean()
{
if(!length)
{
Push_back(0);
return;
}
while(!numbers[length-1])
{
length--;
if(length<=0)
break;
}
if
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 13156 2008-10-14 12:50 RSA_others\Big.cpp
文件 3484 2008-10-14 00:26 RSA_others\Big.dsp
文件 531 2008-10-14 00:26 RSA_others\Big.dsw
文件 1197 2008-10-14 00:51 RSA_others\Big.h
文件 41984 2008-10-20 22:20 RSA_others\Big.ncb
文件 48640 2008-10-20 22:20 RSA_others\Big.opt
文件 859 2008-10-20 22:14 RSA_others\Big.plg
文件 581696 2008-10-20 22:14 RSA_others\Debug\Big.exe
文件 818988 2008-10-20 22:14 RSA_others\Debug\Big.ilk
文件 208782 2008-10-20 22:03 RSA_others\Debug\Big.obj
文件 2374468 2008-10-20 22:03 RSA_others\Debug\Big.pch
文件 1123328 2008-10-20 22:14 RSA_others\Debug\Big.pdb
文件 160407 2008-10-20 22:13 RSA_others\Debug\main.obj
文件 2366284 2008-10-20 22:07 RSA_others\Debug\main.pch
文件 25600 2008-10-20 22:13 RSA_others\Debug\main.pdb
文件 82944 2008-10-20 22:18 RSA_others\Debug\vc60.idb
文件 118784 2008-10-20 22:13 RSA_others\Debug\vc60.pdb
文件 1899 2008-10-14 12:58 RSA_others\main.cpp
文件 3241 2008-10-20 22:20 RSA_others\main.dsp
文件 533 2008-10-20 22:20 RSA_others\main.dsw
文件 41984 2008-10-20 22:20 RSA_others\main.ncb
文件 48640 2008-10-20 22:20 RSA_others\main.opt
文件 2948 2008-10-20 22:13 RSA_others\main.plg
目录 0 2008-10-20 22:14 RSA_others\Debug
目录 0 2008-10-20 22:20 RSA_others
----------- --------- ---------- ----- ----
8070377 25
相关资源
- 基于.net的RSA私钥加密 公钥解密的源码
- RSA加密测试,私钥加密,公钥解密
- 前后端RSA非对称加密解密(代码).
- 易语言实现RSA,ECC,DES,AES,DSA算法
- 非对称加解密——RSA加密、解密以及
- 基于RSA的秘钥加密聊天程序
- 用讲解RSA加密算法(精)
- RSA算法实验报告 通过对RSA算法的实现
- RSA算法Demo
- Adversarial Machine Learning
- 密码学实验报告——RSA、流程图、运
- 安卓各种加密算法的实现 工具类
- RSA签名验证
- CryptoJS v3.1.2.zip完整原版加密JS库
- RSA编程实验——使用libTomCrypt库
- RSA实验代码与文档
- RSATool 使用方法 使用指导 使用帮助
- iOS RSADemo
- RSA算法源代码(js版)
- RSA非对称加密解密Delphi源码
- RSA加密算法的C源代码
- 使用 RSA 展UML 到 Java 5 的转换
- 随机RSA密钥
- RSA算法的纯C代码
- 计算机密码学实验报告AES、RAS算法 以
- 方式2的距离多普勒算法处理RADARSAT-
- RSA加密算法流程图源代码
- 计算机课程设计rsa数字签名实现
- rsa分段加密算法
评论
共有 条评论