Initialize a digest context with type and optional algorithm parameters.
Declared in <openssl/evp.h>
int
EVP_DigestInit_ex2(
EVP_MD_CTX* ctx,
EVP_MD const* type,
OSSL_PARAM const params[]);
1 on success, or 0 on failure.
| Name | Description |
|---|---|
| ctx | Digest context to (re)initialize; must have been created with EVP_MD_CTX_new(). |
| type | Digest algorithm, or NULL to reuse the algorithm already associated with ctx. |
| params | Optional OSSL_PARAM array applied to the digest (terminated by OSSL_PARAM_END), or NULL. |