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.
19 lines
316 B
19 lines
316 B
10 years ago
|
#pragma once
|
||
|
|
||
|
#include "compiler.h"
|
||
|
#include <stdint.h>
|
||
10 years ago
|
#include <stdlib.h>
|
||
10 years ago
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
10 years ago
|
struct ethash_h256;
|
||
10 years ago
|
|
||
10 years ago
|
void SHA3_256(struct ethash_h256 const* ret, uint8_t const* data, size_t size);
|
||
10 years ago
|
void SHA3_512(uint8_t* const ret, uint8_t const* data, size_t size);
|
||
10 years ago
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
10 years ago
|
#endif
|