15 lines
No EOL
287 B
C
15 lines
No EOL
287 B
C
#ifndef MD2_3_H
|
|
#define MD2_3_H
|
|
|
|
#include <pthread.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
void md2_hash_3(size_t len, const uint8_t buf[len], uint8_t out[16]);
|
|
|
|
#endif // MD2_3_H
|