diff options
Diffstat (limited to 'upstream/debian-unstable/man3/EVP_DigestSignInit.3ssl')
-rw-r--r-- | upstream/debian-unstable/man3/EVP_DigestSignInit.3ssl | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/upstream/debian-unstable/man3/EVP_DigestSignInit.3ssl b/upstream/debian-unstable/man3/EVP_DigestSignInit.3ssl index c0ab7569..cf858a71 100644 --- a/upstream/debian-unstable/man3/EVP_DigestSignInit.3ssl +++ b/upstream/debian-unstable/man3/EVP_DigestSignInit.3ssl @@ -55,7 +55,7 @@ .\" ======================================================================== .\" .IX Title "EVP_DIGESTSIGNINIT 3SSL" -.TH EVP_DIGESTSIGNINIT 3SSL 2024-02-03 3.1.5 OpenSSL +.TH EVP_DIGESTSIGNINIT 3SSL 2024-04-04 3.2.2-dev OpenSSL .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -211,6 +211,13 @@ external circumstances (see \fBRAND\fR\|(7)), the operation will fail. The call to \fBEVP_DigestSignFinal()\fR internally finalizes a copy of the digest context. This means that calls to \fBEVP_DigestSignUpdate()\fR and \&\fBEVP_DigestSignFinal()\fR can be called later to digest and sign additional data. +Applications may disable this behavior by setting the EVP_MD_CTX_FLAG_FINALISE +context flag via \fBEVP_MD_CTX_set_flags\fR\|(3). +.PP +Note that not all providers support continuation, in case the selected +provider does not allow to duplicate contexts \fBEVP_DigestSignFinal()\fR will +finalize the digest context and attempting to process additional data via +\&\fBEVP_DigestSignUpdate()\fR will result in an error. .PP \&\fBEVP_DigestSignInit()\fR and \fBEVP_DigestSignInit_ex()\fR functions can be called multiple times on a context and the parameters set by previous calls should be |