diff options
author | Pauli <paul.dale@oracle.com> | 2020-09-16 03:10:01 +0200 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2020-09-23 00:39:43 +0200 |
commit | 4640cd00c36f0535d297d1ed10665597c4e2c7f2 (patch) | |
tree | 6cfc1e1d8566472d2878090d5bd2f2e347be031d /doc | |
parent | Add auto-gen SM2 der files into .gitignore (diff) | |
download | openssl-4640cd00c36f0535d297d1ed10665597c4e2c7f2.tar.xz openssl-4640cd00c36f0535d297d1ed10665597c4e2c7f2.zip |
rand: reference count the EVP_RAND contexts.
This is required before the RAND/DRBG framework can be made user mutable.
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/12904)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man3/EVP_RAND.pod | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/man3/EVP_RAND.pod b/doc/man3/EVP_RAND.pod index dfd2a7eb4c..b7b836f03e 100644 --- a/doc/man3/EVP_RAND.pod +++ b/doc/man3/EVP_RAND.pod @@ -85,6 +85,7 @@ cryptographically secure random bytes. B<EVP_RAND> is a type that holds the implementation of a RAND. B<EVP_RAND_CTX> is a context type that holds the algorithm inputs. +B<EVP_RAND_CTX> structures are reference counted. =head2 Algorithm implementation fetching |