[#SHA384_Update] = SHA384_Update :mrdocs: Absorb message bytes into a SHA‐384 context (deprecated; prefer EVP_DigestUpdate). == Synopsis Declared in `<openssl/sha.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] int SHA384_Update( xref:SHA512_CTX.adoc[SHA512_CTX]* c, void const* data, size_t len); ---- [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 | *c* | Context previously initialized with SHA384_Init(). | *data* | Message bytes to hash. | *len* | Number of bytes at `data.` |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#