Files
matar/src/util/utils.hh
2023-09-11 10:25:14 +05:30

11 lines
194 B
C++

#pragma once
#include <string>
// Why I wrote this myself? I do not know
// I will off myself 😹😹😹😹
namespace crypto {
std::string
sha256(const uint8_t* data, const size_t size);
}