[#RIPEMD160_Final] = RIPEMD160_Final :mrdocs: Finalise a RIPEMD‐160 digest into a 20‐byte buffer (deprecated; prefer EVP_DigestFinal_ex). == Synopsis Declared in `<openssl/ripemd.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] int RIPEMD160_Final( unsigned char* md, xref:RIPEMD160_CTX.adoc[RIPEMD160_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* | Destination buffer of at least RIPEMD160_DIGEST_LENGTH bytes. | *c* | Context to finalise (left in an undefined state afterward). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#