equihash/blake2-avx2/blake2bip.h

13 lines
312 B
C
Raw Normal View History

2016-10-26 18:52:46 -07:00
#ifndef BLAKE2_AVX2_BLAKE2BIP_H
#define BLAKE2_AVX2_BLAKE2BIP_H
#include <stddef.h>
typedef uint32_t u32;
typedef unsigned char uchar;
2016-11-10 18:34:16 -08:00
void blake2bx4_final(const blake2b_state *midstate, uchar *hashout, u32 blockidx);
void blake2bx8_final(const blake2b_state *midstate, uchar *hashout, u32 blockidx);
2016-10-26 18:52:46 -07:00
#endif