You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
316 B
18 lines
316 B
#pragma once
|
|
|
|
#include "compiler.h"
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct ethash_h256;
|
|
|
|
void SHA3_256(struct ethash_h256 const* ret, uint8_t const* data, size_t size);
|
|
void SHA3_512(uint8_t* const ret, uint8_t const* data, size_t size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|