mirror of
https://github.com/JayDDee/cpuminer-opt.git
synced 2025-09-17 23:44:27 +00:00
15 lines
270 B
C++
15 lines
270 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
//#include <streams/hash/hash_interface.h>
|
|
#include "hash_interface.h"
|
|
|
|
namespace sha3 {
|
|
|
|
using BitSequence = hash::BitSequence;
|
|
using DataLength = hash::DataLength;
|
|
|
|
struct sha3_interface : hash::hash_interface {};
|
|
|
|
} // namespace sha3
|