[#SHA384_Final] = SHA384_Final :mrdocs: Finalise a SHA‐384 digest and write the 48‐byte hash (deprecated). == Synopsis Declared in `<openssl/sha.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] int SHA384_Final( unsigned char* md, xref:SHA512_CTX.adoc[SHA512_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 error. == Parameters [cols="1,4"] |=== | Name| Description | *md* | Output buffer of at least SHA384_DIGEST_LENGTH bytes. | *c* | Context previously updated with SHA384_Update(). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#