Sortix nightly manual
This manual documents Sortix nightly, a development build that has not been officially released. You can instead view this document in the latest official manual.
NAME
MD4, MD5, MD4_Init, MD4_Update, MD4_Final, MD5_Init, MD5_Update, MD5_Final — MD4 and MD5 hash functionsSYNOPSIS
#include <openssl/md4.h>MD4(const unsigned char *d, unsigned long n, unsigned char *md);
MD4_Init(MD4_CTX *c);
MD4_Update(MD4_CTX *c, const void *data, unsigned long len);
MD4_Final(unsigned char *md, MD4_CTX *c);
MD5(const unsigned char *d, unsigned long n, unsigned char *md);
MD5_Init(MD5_CTX *c);
MD5_Update(MD5_CTX *c, const void *data, unsigned long len);
MD5_Final(unsigned char *md, MD5_CTX *c);
DESCRIPTION
MD4 and MD5 are cryptographic hash functions with a 128-bit output.==
MD5_DIGEST_LENGTH == 16
bytes of output. If md is NULL, the digest is placed in a static array.bytes at
data).== 16
bytes of output, and erases the MD5_CTX.