gra-projekt/Implementierung/lib/md2_impls/md2_0.h

13 lines
246 B
C
Raw Normal View History

2022-07-04 18:04:08 +02:00
#ifndef MD2_0_H
#define MD2_0_H
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
2022-07-06 20:35:27 +02:00
void md2_hash_0(size_t len, const uint8_t buf[len], uint8_t out[16]);
2022-07-04 18:04:08 +02:00
#endif // MD2_0_H