2022-07-15 00:01:35 +02:00
|
|
|
#ifndef MD2_3_H
|
|
|
|
#define MD2_3_H
|
|
|
|
|
2022-07-19 22:27:56 +02:00
|
|
|
#include <pthread.h>
|
2022-07-15 00:01:35 +02:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
2022-07-19 23:12:04 +02:00
|
|
|
#include <unistd.h>
|
2022-07-15 00:01:35 +02:00
|
|
|
|
|
|
|
void md2_hash_3(size_t len, const uint8_t buf[len], uint8_t out[16]);
|
|
|
|
|
|
|
|
#endif // MD2_3_H
|