[#EVP_DigestVerifyUpdate] = EVP_DigestVerifyUpdate :mrdocs: Hash more message bytes into an initialized DigestVerify context. == Synopsis Declared in `<openssl/evp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int EVP_DigestVerifyUpdate( xref:EVP_MD_CTX.adoc[EVP_MD_CTX]* ctx, void const* data, size_t dsize); ---- == Return Value 1 on success, or 0 on failure. == Parameters [cols="1,4"] |=== | Name| Description | *ctx* | Verification context from EVP_DigestVerifyInit() or EVP_DigestVerifyInit_ex(). | *data* | Bytes to absorb into the verification hash. | *dsize* | Number of bytes at `data.` |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#