云服务器网:购买云服务器和VPS必上的网站!

怎样使用:怎样使用RSA算法实现数据加密

怎样使用RSA算法实现数据加密使用RSA算法对数据进行加密的方法具体方法以下:#ifndef ENCRYPT_H#define ENCRYPT_H/*在一个安全实现中,Huge 最少要400位10进制数字*/typedef unsigned long Huge

怎样使用RSA算法实现数据加密

使用RSA算法对数据进行加密的方法

具体方法以下:

#ifndef ENCRYPT_H

#define ENCRYPT_H

/*在一个安全实现中,Huge 最少要400位10进制数字*/

typedef unsigned long Huge;

/*为RSA公钥定义一个数据结构*/

typedef struct RsaPubKey_

{

Huge e;

Huge n;

}RsaPubkey;

/*为RSA私钥定义一个数据结构*/

typedef struct RsaPriKey_

{

Huge d;

Huge n;

}RsaPriKey;

/*函数声明*/

void des_encipher(const unsigned char *plaintext, unsigned char *ciphertext, const unsigned char *key);

void des_decipher(const unsigned char *ciphertext, unsigned char *plaintext, const unsigned char *key);

void rsa_encipher(Huge plaintext, Huge *ciphertext, RsaPubKey pubkey);

void rsa_decipher(Huge ciphertext,Huge *plaintext, RsaPriKey prikey);

#endif

本文来源:https://www.yuntue.com/post/60774.html | 云服务器网,转载请注明出处!

关于作者: yuntue

云服务器(www.yuntue.com)是一家专门做阿里云服务器代金券、腾讯云服务器优惠券的网站,这里你可以找到阿里云服务器腾讯云服务器等国内主流云服务器优惠价格,以及海外云服务器、vps主机等优惠信息,我们会为你提供性价比最高的云服务器和域名、数据库、CDN、免费邮箱等企业常用互联网资源。

为您推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注