[#MD5_Final] = MD5_Final :mrdocs: Finish an MD5 message digest and write the 16‐byte result (deprecated). == Synopsis Declared in `<openssl/md5.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] int MD5_Final( unsigned char* md, xref:MD5_CTX.adoc[MD5_CTX]* c); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Return Value 1 on success, or 0 on failure. == Parameters [cols="1,4"] |=== | Name| Description | *md* | Output buffer for the digest (must hold at least 16 bytes). | *c* | MD5 context initialized with MD5_Init() and updated with MD5_Update(). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#