diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-17 10:52:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-17 10:52:33 +0000 |
commit | 2c3307fb903f427be3d021c5780b75cac9af2ce8 (patch) | |
tree | 65cf431f40b7481d81ae2dfce9576342686448f7 /upstream/debian-unstable/man3/EVP_DigestSignInit.3ssl | |
parent | Releasing progress-linux version 4.22.0-1~progress7.99u1. (diff) | |
download | manpages-l10n-2c3307fb903f427be3d021c5780b75cac9af2ce8.tar.xz manpages-l10n-2c3307fb903f427be3d021c5780b75cac9af2ce8.zip |
Merging upstream version 4.23.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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 |