after 2 weeks of porting over the ngc_ft1 code to solanaceae and rewriting the highlevel logic
(29 commits predate this)
This commit is contained in:
10
solanaceae/ngc_ft1_sha1/hash_utils.hpp
Normal file
10
solanaceae/ngc_ft1_sha1/hash_utils.hpp
Normal file
@@ -0,0 +1,10 @@
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
#include <vector>
|
||||
|
||||
// returns the 20bytes sha1 hash
|
||||
std::vector<uint8_t> hash_sha1(const uint8_t* data, size_t size);
|
||||
|
||||
inline std::vector<uint8_t> hash_sha1(const char* data, size_t size) { return hash_sha1(reinterpret_cast<const uint8_t*>(data), size); }
|
||||
|
Reference in New Issue
Block a user