Hash more message bytes into an initialized DigestSign context.
Declared in <openssl/evp.h>
int
EVP_DigestSignUpdate(
EVP_MD_CTX* ctx,
void const* data,
size_t dsize);
1 on success, or 0 on failure.
| Name | Description |
|---|---|
| ctx | Signing context from EVP_DigestSignInit() or EVP_DigestSignInit_ex(). |
| data | Bytes to absorb into the signature hash. |
| dsize | Number of bytes at data. |