11 lines
227 B
C
11 lines
227 B
C
#ifndef YESPOWER_ARM_H
|
|
#define YESPOWER_ARM_H
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
// ARM-Optimierte Hash-Funktion
|
|
void yespower_arm_hash(const uint8_t *input, size_t input_len, uint8_t *output);
|
|
|
|
#endif // YESPOWER_ARM_H
|