• 大小: 6KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-13
  • 语言: C/C++
  • 标签: c++  md5  

资源简介

MD5算法是广泛 使用的 Hash 算法,用于确保信息传输的完整性和一致性。 MD5算法的c++程序设计和实现。

资源截图

代码片段和文件信息

//
//  main.cpp
//  MD5 Algorithm
//
//  Created by Miss_Jian on 2018/12/7.
//  Copyright © 2018 Rx. All rights reserved.
//

#include 
#include “MD5.hpp“
using namespace std;

int main(int argc const char * argv[]) {
    
    unsigned char source[2000];
    cout<<“Input string to be encrypted:\n“;
    cin>>source;
    
    MD5 md5;
    string out=md5.MD5Algorithm(source);
    cout<<“MD5 After:“<    return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-12-09 16:37  MD5绠楁硶绋嬪簭璁捐\
     文件        4225  2018-12-09 16:25  MD5绠楁硶绋嬪簭璁捐\MD5.cpp
     目录           0  2018-12-09 17:00  __MACOSX\
     目录           0  2018-12-09 17:00  __MACOSX\MD5绠楁硶绋嬪簭璁捐\
     文件         176  2018-12-09 16:25  __MACOSX\MD5绠楁硶绋嬪簭璁捐\._MD5.cpp
     文件        1677  2018-12-09 14:17  MD5绠楁硶绋嬪簭璁捐\MD5Data.h
     文件         423  2018-12-09 14:17  __MACOSX\MD5绠楁硶绋嬪簭璁捐\._MD5Data.h
     文件        1604  2018-12-09 14:47  MD5绠楁硶绋嬪簭璁捐\MD5.hpp
     文件         176  2018-12-09 14:47  __MACOSX\MD5绠楁硶绋嬪簭璁捐\._MD5.hpp
     文件         440  2018-12-09 14:11  MD5绠楁硶绋嬪簭璁捐\main.cpp
     文件         333  2018-12-09 14:11  __MACOSX\MD5绠楁硶绋嬪簭璁捐\._main.cpp

评论

共有 条评论