Instantiate (seed) an EVP_RAND_CTX so it can generate random bytes.
Declared in <openssl/evp.h>
int
EVP_RAND_instantiate(
EVP_RAND_CTX* ctx,
unsigned int strength,
int prediction_resistance,
unsigned char const* pstr,
size_t pstr_len,
OSSL_PARAM const params[]);
1 on success, or 0 on error.
| Name | Description |
|---|---|
| ctx | RNG context to instantiate. |
| strength | Requested security strength in bits. |
| prediction_resistance | Non-zero to force a reseed from live entropy. |
| pstr | Optional personalization string, or NULL. |
| pstr_len | Length of pstr in bytes. |
| params | Optional OSSL_PARAM array of additional parameters, or NULL. |