openMSX
|
#include <array>
#include <string>
#include <cstdint>
#include <span>
Go to the source code of this file.
Classes | |
struct | openmsx::TigerHash |
This struct represents the result of a tiger-hash. More... | |
Namespaces | |
namespace | openmsx |
This file implemented 3 utility functions: | |
Functions | |
void | openmsx::tiger (std::span< const uint8_t > input, TigerHash &result) |
Generic function to calculate a tiger-hash. | |
void | openmsx::tiger_int (const TigerHash &h0, const TigerHash &h1, TigerHash &result) |
Use for tiger-tree internal node hash calculations. | |
void | openmsx::tiger_leaf (std::span< uint8_t > data, TigerHash &result) |
Use for tiger-tree leaf node hash calculations. | |