11 lines
194 B
C++
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);
|
|
}
|