EVP_DigestUpdate

Hashes data into a digest context, to update a signature

This function can be called multiple times on the same ctx to hash additional data.

extern (C)
int
EVP_DigestUpdate
(,
const(void)* d
,
size_t cnt
)

Parameters

ctx EVP_MD_CTX*

the digest context containing the hash

d const(void)*

pointer to the start of the data to be hashed

cnt size_t

the number of bytes of data to be hashed

Return Value

Type: int

1 on success. 0 for failure

Meta