
哪位大神能写一个RSA算法的文件加密解密的C程序给我,可以对文件进行加密和解密,在线等,急!!!!
哪位大神能写一个RSA算法的文件加密解密的C程序给我,可以对文件进行加密和解密,在线等,急!!!!!!!。...
哪位大神能写一个RSA算法的文件加密解密的C程序给我,可以对文件进行加密和解密,在线等,急!!!!!!!。
展开
1个回答
展开全部
/********************************************************************************************
* Copyright(c) tcpipstack
* File Name : RSA.c
* Abstract Description : RSA加解密算法的简单演示
* Create Date : 2010/08/17
* Author : tcpipstack
*-------------------------Revision History--------------------------------------------------
* No Version Date Revised By Item Description
* 1 1.0 10/08/17
*
********************************************************************************************/
#include <stdio.h>
#include <math.h>
/* RSA算法中加密方公布的密钥是N和E,解密方使用N和D解密 */
#define P 5 /* P和Q必须为素数,在实际运用中通常为很大的数 */
#define Q 7
#define N (P*Q) /* add the (), or will cause the mistake */
#define Z ((P - 1)*(Q - 1))
#define E 5 /* 加密方选择E,E必须和Z只有一个公约数 */
#define D 5 /* (E * D - 1)必须能够被Z整除 */
/* 由于long int无法表示过大的数字,所以D取5 */
void main(void)
{
int i;
int TrsMsg[4] = {12, 15, 22, 5};
long en[4], de[4];
int SecCode[4], DeMsg[4];
printf("下面是一个RSA加解密算法的简单演示:\n\n");
printf("报文\t加密\t 加密后密文\n");
for (i=0; i<4; i++)
{
/* s = m(E) mod N */
en[i] = (int)pow(TrsMsg[i], E);
SecCode[i] = en[i] % N;
printf("%d\t%d\t\t%d\n", TrsMsg[i], en[i], SecCode[i]);
}
printf("\n原始报文\t密文\t\t\t解密报文\n");
for (i=0; i<4; i++)
{
/* d = s(D) mod N */
de[i] = pow(SecCode[i], D);
DeMsg[i] = de[i] % N;
printf("%d\t\t%d\t%d\t\t%d\n", TrsMsg[i], SecCode[i], de[i], DeMsg[i]);
}
}
* Copyright(c) tcpipstack
* File Name : RSA.c
* Abstract Description : RSA加解密算法的简单演示
* Create Date : 2010/08/17
* Author : tcpipstack
*-------------------------Revision History--------------------------------------------------
* No Version Date Revised By Item Description
* 1 1.0 10/08/17
*
********************************************************************************************/
#include <stdio.h>
#include <math.h>
/* RSA算法中加密方公布的密钥是N和E,解密方使用N和D解密 */
#define P 5 /* P和Q必须为素数,在实际运用中通常为很大的数 */
#define Q 7
#define N (P*Q) /* add the (), or will cause the mistake */
#define Z ((P - 1)*(Q - 1))
#define E 5 /* 加密方选择E,E必须和Z只有一个公约数 */
#define D 5 /* (E * D - 1)必须能够被Z整除 */
/* 由于long int无法表示过大的数字,所以D取5 */
void main(void)
{
int i;
int TrsMsg[4] = {12, 15, 22, 5};
long en[4], de[4];
int SecCode[4], DeMsg[4];
printf("下面是一个RSA加解密算法的简单演示:\n\n");
printf("报文\t加密\t 加密后密文\n");
for (i=0; i<4; i++)
{
/* s = m(E) mod N */
en[i] = (int)pow(TrsMsg[i], E);
SecCode[i] = en[i] % N;
printf("%d\t%d\t\t%d\n", TrsMsg[i], en[i], SecCode[i]);
}
printf("\n原始报文\t密文\t\t\t解密报文\n");
for (i=0; i<4; i++)
{
/* d = s(D) mod N */
de[i] = pow(SecCode[i], D);
DeMsg[i] = de[i] % N;
printf("%d\t\t%d\t%d\t\t%d\n", TrsMsg[i], SecCode[i], de[i], DeMsg[i]);
}
}
追问
。。。。。。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询