barretenberg
Loading...
Searching...
No Matches
hash_types.hpp
1/* ethash: C/C++ implementation of Ethash, the Ethereum Proof of Work algorithm.
2 * Copyright 2018-2019 Pawel Bylica.
3 * Licensed under the Apache License, Version 2.0.
4 */
5
6#pragma once
7
8#include <stdint.h>
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14struct keccak256 {
15 uint64_t word64s[4];
16};
17
18#ifdef __cplusplus
19}
20#endif
Definition: hash_types.hpp:14