About
- 文件md5计算。
mc_md5.h
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
#ifndef ENSYSTEMINFOCOLL_COMMON_MAC_COMMON_MC_MD5_H_ #define ENSYSTEMINFOCOLL_COMMON_MAC_COMMON_MC_MD5_H_ #include <string> #include <vector> #include <fstream> #include <sstream> namespace mac_common { class md5_calc { public: explicit md5_calc(std::string& file_name); ~md5_calc(); std::string get_md5(); private: std::ifstream fs_; }; } // namespace mac_common #endif //ENSYSTEMINFOCOLL_COMMON_MAC_COMMON_MC_MD5_H_ |
mc_md5.cpp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
include "mc_md5.h" #include "openssl@1.1.1/include/openssl/md5.h" namespace mac_common { md5_calc::md5_calc(std::string &file_name) { fs_.open(file_name, std::ios::binary); } md5_calc::~md5_calc() { if (fs_) { fs_.close(); } } std::string md5_calc::get_md5() { std::string res; if (!fs_) { return res; } MD5_CTX md5; MD5_Init(&md5); char buf[1024 * 16]; while (fs_.good()) { fs_.read(buf, sizeof(buf)); MD5_Update(&md5, buf, fs_.gcount()); } unsigned char result[MD5_DIGEST_LENGTH]; MD5_Final(result, &md5); std::stringstream md5_str; md5_str << std::hex << std::uppercase << std::setfill('0'); for (const auto &byte: result) md5_str << std::setw(2) << (int)byte; return md5_str.str(); } } // namespace mac_common |
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 深入理解C++11:C++11新特性解析与应用 一12/21
- ♥ Soui二05/18
- ♥ macOs 解析mach-o05/11
- ♥ 编译器扩展语法:一07/06
- ♥ C++标准库_chrono03/28
- ♥ C++标准模板库编程实战_算法和随机数12/08