mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-04 11:43:39 +00:00
54176f1bbc
* meson: allow to build with openssl * use MD4 from openssl * meson: use MD5 from openssl too * meson: use SHA* functions from ssl library * libr/hash: fix makefile when using openssl
9 lines
160 B
C
9 lines
160 B
C
#ifndef _R_MD5_H
|
|
#define _R_MD5_H
|
|
|
|
void MD5_Init(MD5_CTX *);
|
|
void MD5_Update(MD5_CTX *, const ut8*, unsigned int);
|
|
void MD5_Final(ut8 [16], MD5_CTX *);
|
|
|
|
#endif
|