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