1 // ethash: C/C++ implementation of Ethash, the Ethereum Proof of Work algorithm.
2 // Copyright 2018 Pawel Bylica.
3 // Licensed under the Apache License, Version 2.0. See the LICENSE file.
4 
5 #pragma once
6 
7 #include <ethash/hash_types.h>
8 
9 namespace ethash
10 {
11 using hash256 = ethash_hash256;
12 using hash512 = ethash_hash512;
13 using hash1024 = ethash_hash1024;
14 using hash2048 = ethash_hash2048;
15 }  // namespace ethash
16