通过bitset库实现sha256
摘要:
//sha-256 #include <iostream> #include <bitset> #include <string> #include <string.h> using namespace std; typedef bitset<8> byte; //重命名bitset<8>模板类为b 阅读全文
posted @ 2022-05-27 10:30 小丑首长 阅读(18) 评论(0) 推荐(0) 编辑