一道网络安全作业题给你们看看

微笑

题目

请设计和实现一个算法,把一个文件M由A传输到B,并保证:

– 文件M的完整性

– B能够认证M的发送方

– 文件M的完整性、机密性

算法设计思路

信息完整性和抗否认性是信息安全保证的两个基本要素,数字签名技术通过对消息摘要技术和公开密钥技术的有机结合,实现了对在不可靠网络中传输的信息的完整性和抗否认性的有效保证。

使用数字签名的方式,实现对文件M完整性和认证的保证。

数字签名的大致过程如下:消息发送方首先利用Hash函数对待发消息进行摘要处理,生成一个固定长度的消息摘要H(M),然后用自己的私钥对该散列值进行加密,形成发送方的一个数字签名,这个数字签名作为消息的附件随消息一起被发送到消息的接受方。接受方利用数字签名中的消息摘要能对消息的完整性进行判断,用发送方的公钥对签名解密则能对发送方进行身份认证和保证抗否认性。

我们使用MD5函数作为上述方法的Hash函数,使用RSA算法作为非对称加密算法。具体实现流程如下:

发送端A的操作流程:

1

接收端B的操作流程:

2

由上面两图可以清楚知道该算法的工作流程。通过对文件M进行数字签名可以保证文件M传输后的完整性和抗否认性。对文件M使用B的public key进行加密,使得只有B能够通过自己的private key进行解密,保证了文件M的机密性。

文件清单

clip_image005[4]

运行方法及相关说明:

1、 程序采用c++语言编写,文件清单里的main.cpp是主控程序,其他文件问逻辑处理函数或是工具类。

2、 文件PrimeGenerator用于生成public key 与 private key

3、 程序基于文件驱动运行,即将各种文件作为参数作为程序的入口。在程序的根目录下必须保证收发端的public key 以及private key,以及待发送处理的文件M。命名规则如下图所示:

clip_image007[4]

4、 运行DigitalSignature.exe可执行程序,运行终端显示如下(下图显示了整个工作流程信息,模拟了send和Receive的过程):

clip_image009[4]

5、 文件输出为

clip_image011[4]

DigitalSignature.txt 表示发送端生成的数字签名,cypherFile.txt表示使用接受端的publickey B_public.key加密message.txt后的密文文件。Newmessage文件表示的是接受端B时候自己的private key解密后的文件。

6、 一个具体事例的演示:

a) message.txt文件内容

clip_image013[4]

b) 发送端使用MD5生成message.txt文件的指纹为

clip_image014[4]

c) 发送端使用A_private.key加密该指纹得数字签名DigitalSignature.txt

clip_image016[4]

d) 发送端使用B_public.key 加密文件message.txt ,并将密文保存为cypherFile.txt

clip_image018[4]

e) 发送端操作结束

f) 接收端使用A_publickey解密DigitalSignature.txt,得到解密后指纹1

clip_image019[4]

g) 接收端使用B_privatekey解密cypherFile.txt,得到解密后的文件,并写入newmessage.txt。发现与原文件内容相同。

clip_image021[4]

h) 接收端使用MD5生成文件newmessage.txt的指纹2

clip_image022[4]

i) 比较指纹1和指纹2 , 判断是否可以相同

clip_image023[4]

程序关键代码

本实验采用了网络上开源的MD5算法以及RSA算法,并对其算法中的一些函数进行了改写与扩充。先将本实验的核心主程序代码给出,代码附有比较详细的注释信息,这里便不再赘述。

#include <cstdlib>    //srand()
#include <iostream>    //cout
#include <ctime>    //time()
#include <cstring>    //strcmp()
#include "test.h"    //testing functions
#include "RSA.h"    //GenerateKeyPair()
#include "PrimeGenerator.h"    //Generate()
#include "CMd5.h"

using std::cout;
using std::endl;
using std::cin;
using namespace std;
/*read a key from a key file*/
Key ReadKey(const char * keyfile)
{
    std::ifstream source(keyfile, std::ios::in | std::ios::binary);
    if (!source){
        cout<< "Error : Opening file \"KeyFile\" failed."<<endl;
    }
    string str_modulus , str_exponent;
    source >> str_modulus >> str_exponent;
    BigInt modulus(str_modulus);
    BigInt exponent(str_exponent);
    Key key(modulus , exponent);
    return key;
}

/*read whole text from a file*/
std::string GetWholeTextFromFile(const char * filename)
{
    std::ifstream source(filename , std::ios::in | std::ios::binary);
    if(!source){
        cout<< "Error : Opening file \"File\" failed."<<endl;
    }
    source.seekg(0, std::ios::end);
    const unsigned long int fileSize = source.tellg();
    source.seekg(0, std::ios::beg);
    char buff[10240];
    source.read(buff , fileSize);
    buff[fileSize] = '\0';
    std::string wholetext = std::string(buff);
    source.close();
    return wholetext;
}

/*generate a fingerprint using MD5 algorithm*/
std::string GenerateFingerPrintFromFile(const char * filename)
{
    std::ifstream source(filename , std::ios::in | std::ios::binary);
    if(!source){
        cout<< "Error : Opening file \"File\" failed."<<endl;
    }
    source.seekg(0, std::ios::end);
    const unsigned long int fileSize = source.tellg();
    source.seekg(0, std::ios::beg);
    char buff[10240];
    source.read(buff , fileSize);
    buff[fileSize] = '\0';

    unsigned char digest[16];
    //调用MD5相关函数,生成buff的MD5码,存入digest
    md5_state_t md5state;
    md5_init(&md5state);
    md5_append(&md5state, (const unsigned char *)buff, strlen(buff));
    md5_finish(&md5state, digest);
    char presentation[33];
    md5_presentation(digest , presentation);
    presentation[32] = '\0';
    std::string fingerPrint = std::string(presentation);
    source.close();
    return fingerPrint;
}

/*
    Send a messageFile M to a receiver.
    Pass messageFile'path , sender's private key path , receiver's public key path to the function.
    This function will write M's digitalSignature to a file called 'DigitalSignature.txt';
    Also write encrypted M a file called 'cypherFile.txt' using receiver's public key.
*/
void send(char * messageFile , char * sender_private_key , char * receiver_public_key)
{
    char cypherFile [] = "cypherFile.txt";//output file name
    char digitalSignatureFile [] = "DigitalSignature.txt";
    std:string fingerPrint = GenerateFingerPrintFromFile(messageFile);
    cout<<"1) File M 's fingerPrint is"<<endl<<fingerPrint<<endl;
    Key B_publickey = ReadKey(receiver_public_key);
    Key A_privatekey = ReadKey(sender_private_key);
    std::string cypherText = RSA::Encrypt(fingerPrint, A_privatekey);
    cout<<"2) FingerPrint has been encrypted using sender's private key"<<endl
        <<"3) DigitalSignatureFile generated , save as a file called 'DigitalSignature.txt'"<<endl;
    RSA::Encrypt(messageFile, cypherFile, B_publickey);
    cout<<"4) File M has been encrypted using receiver's public key."<<endl
          <<"5) Save as a file called 'cypherFile.txt'"<<endl;
    std::ofstream dest(digitalSignatureFile, std::ios::out | std::ios::binary);
    dest<<cypherText;
    dest.flush();
    dest.close();
}


/*
    Receive a encrypted file cypherFile and a digitalSignature file From sender , 
    check whether M is completed or not , decrypt from cypherFile using receiver's private key.
    Pass paths of cypherFile , digitalSignatureFile ,sender_public_key ,receiver_private_key to this function.
    This function will print some checking results.
*/
void receive(char * cypherFile , char * digitalSignatureFile , char * sender_public_key , char * receiver_private_key)
{
    char newmessage [] = "newmessage.txt"; // output file name
    Key A_publickey = ReadKey(sender_public_key);
    Key B_privatekey = ReadKey(receiver_private_key);
    std::string cypherText = GetWholeTextFromFile(digitalSignatureFile);
    cout<<"1) DigitalSignatureFile has been decrypted using sender's public key."<<endl
        <<"2) Get FingerPrint:"<<endl;
    std::string newFingerPrint = RSA::Decrypt(cypherText, A_publickey);
    cout<<newFingerPrint<<endl;
    RSA::Decrypt(cypherFile, newmessage, B_privatekey);
    cout<<"3) CypherFile has been decrypted using B's private key."<<endl
        <<"4) Get another printfinger:"<<endl;
    std::string anotherFingerPrint = GenerateFingerPrintFromFile(newmessage);
    cout<<anotherFingerPrint<<endl;
    cout<<"5) Now check two printfingers"<<endl;
    bool check = (newFingerPrint==anotherFingerPrint);
    if (check == true)
    {
        cout<<"Result : File is completed!"<<endl;
    }
    else
    {
        cout<<"Result : File is not completed,Please check!"<<endl;
    }
}

int main(int argc, char *argv[])
{
    char messageFile [] = "message.txt";
    char sender_private_key [] = "A_private.key";
    char receiver_public_key [] = "B_public.key";

    char sender_public_key [] = "A_public.key";
    char receiver_private_key [] = "B_private.key";
    char digitalSignature [] = "DigitalSignature.txt";
    char cypherFile [] = "cypherFile.txt";

    cout<<"***************Read Me***************"<<endl;
    cout<<"Please read this algotirhm's document first!"<<endl;
    cout<<"This program uses MD5 as hash function and RSA as Asymmetric Encryption Algorithm."<<endl;
    cout<<"Please check that you must have both sender and receiver's public key and private key"<<endl;
    cout<<"Please check that you must have a message file to be test."<<endl;
    cout<<"File structure must look like as following:"<<endl;
    cout<<"message.txt,A_private.key,A_public.key,B_private.key,B_public.key"<<endl;
    cout<<"*************************************"<<endl;
    std::string input;
    while(1)
    {
        cout<<"If you are sure , please input 'yes' to start this program!"<<endl;
        cin >> input;
        if (input != "yes")
            continue;
        cout<<"*****************Send****************"<<endl;
        send(messageFile , sender_private_key , receiver_public_key);
        cout<<"***************Receive***************"<<endl;
        receive(cypherFile ,digitalSignature , sender_public_key , receiver_private_key);
        break;
    }
    cout<<"Please press any key to exit!"<<endl;
    cin >> input;
    return 0;
}

 

  • 16
    点赞
  • 23
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值