Crypto++学习总结---RSA

// TestRsa.cpp : 定义控制台应用程序的入口点。
//


#include "stdafx.h"
#include "randpool.h"   
#include "rsa.h"   
#include "hex.h"   
#include "files.h" 


#include <string>


using namespace std;
//using namespace CryptoPP;


//#pragma comment(lib, "cryptlib.lib") 


//------------------------   
// 函数声明   
//------------------------   
void GenerateRSAKey(unsigned int keyLength, const char *privFilename, const char *pubFilename, const char *seed);   
string RSAEncryptString(const char *pubFilename, const char *seed, const char *message);   
string RSADecryptString(const char *privFilename, const char *ciphertext);   
CryptoPP::RandomPool & GlobalRNG();   


int _tmain(int argc, _TCHAR* argv[])
{
char priKey[128] = {0};   
char pubKey[128] = {0};   
char seed[1024] = {0};   


// 生成 RSA 密钥对   
strcpy(priKey, "pri"); // 生成的私钥文件   
strcpy(pubKey, "pub"); // 生成的公钥文件   
strcpy(seed, "seed");   
GenerateRSAKey(1024, priKey, pubKey, seed);   


// RSA 加解密   
char message[1024] = {0};   
cout<<"Origin Text:\t"<<"Hello World!"<<endl<<endl;   
strcpy(message, "Hello World!");   
string encryptedText = RSAEncryptString(pubKey, seed, message); // RSA 加密 [Page]  
cout<<"Encrypted Text:\t"<<encryptedText<<endl<<endl;   
string decryptedText = RSADecryptString(priKey, encryptedText.c_str()); // RSA 解密   
cout<<"Decrypted Text:\t"<<decryptedText<<endl<<endl;  
system("pause");  

return 0;
}




//------------------------   
// 生成RSA密钥对   
//------------------------   
void GenerateRSAKey(unsigned int keyLength, const char *privFilename, const char *pubFilename, const char *seed)   
{   
CryptoPP::RandomPool randPool;   
    randPool.Put((byte *)seed, strlen(seed));   
  
CryptoPP::RSAES_OAEP_SHA_Decryptor priv(randPool, keyLength);   
CryptoPP::HexEncoder privFile(new CryptoPP::FileSink(privFilename));   
    priv.DEREncode(privFile);   
    privFile.MessageEnd();   
  
CryptoPP::RSAES_OAEP_SHA_Encryptor pub(priv);   
CryptoPP::HexEncoder pubFile(new CryptoPP::FileSink(pubFilename));   
    pub.DEREncode(pubFile);   
    pubFile.MessageEnd();   
}   
  
//------------------------   
// RSA加密   
//------------------------   
string RSAEncryptString(const char *pubFilename, const char *seed, const char *message)   
{   
CryptoPP::FileSource pubFile(pubFilename, true, new CryptoPP::HexDecoder);   
CryptoPP::RSAES_OAEP_SHA_Encryptor pub(pubFile);   
  
CryptoPP::RandomPool randPool;   
    randPool.Put((byte *)seed, strlen(seed));   
  
    string result;   
CryptoPP::StringSource(message, true, new CryptoPP::PK_EncryptorFilter(randPool, pub, new CryptoPP::HexEncoder(new CryptoPP::StringSink(result))));   
    return result;   
}   
  
//------------------------   
// RSA解密   
//------------------------   
string RSADecryptString(const char *privFilename, const char *ciphertext)   
{   
CryptoPP::FileSource privFile(privFilename, true, new CryptoPP::HexDecoder);  
  
CryptoPP::RSAES_OAEP_SHA_Decryptor priv(privFile);   
  
    string result;   
CryptoPP::StringSource(ciphertext, true, new CryptoPP::HexDecoder(new CryptoPP::PK_DecryptorFilter(GlobalRNG(), priv, new CryptoPP::StringSink(result))));   
    return result;   
}   
  
//------------------------   
// 定义全局的随机数池   
//------------------------   
CryptoPP::RandomPool & GlobalRNG()   
{   
static CryptoPP::RandomPool randomPool;   
    return randomPool;   
}   
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值