]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix EVP_RAND-SEED-SRC documentation example
authorJamie Cui <jamie.cui@outlook.com>
Wed, 29 Nov 2023 01:28:58 +0000 (01:28 +0000)
committerTomas Mraz <tomas@openssl.org>
Thu, 30 Nov 2023 11:33:17 +0000 (12:33 +0100)
Fixes #22810

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/22857)

doc/man7/EVP_RAND-SEED-SRC.pod

index 8bbd5794720e0db0ec4274c435e0fe24b490296d..a00ed328d529065cb7bf531d3914093f2db45bfc 100644 (file)
@@ -49,9 +49,10 @@ A context for the seed source can be obtained by calling:
  OSSL_PARAM params[2], *p = params;
  unsigned int strength = 128;
 
- /* Create a seed source */
+ /* Create and instantiate a seed source */
  rand = EVP_RAND_fetch(NULL, "SEED-SRC", NULL);
  seed = EVP_RAND_CTX_new(rand, NULL);
+ EVP_RAND_instantiate(seed, strength, 0, NULL, 0, NULL);
  EVP_RAND_free(rand);
 
  /* Feed this into a DRBG */