mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
11 lines
226 B
C++
Executable File
11 lines
226 B
C++
Executable File
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
class SHA
|
|
{
|
|
public:
|
|
static std::vector<std::uint8_t> sha1(const std::vector<std::uint8_t> &data);
|
|
static std::vector<std::uint8_t> sha512(const std::vector<std::uint8_t> &data);
|
|
};
|