summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/doc/EVP_SignInit.pod
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/doc/EVP_SignInit.pod')
-rw-r--r--src/lib/libcrypto/doc/EVP_SignInit.pod8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/lib/libcrypto/doc/EVP_SignInit.pod b/src/lib/libcrypto/doc/EVP_SignInit.pod
index 6ea6df655e..5a1b67e006 100644
--- a/src/lib/libcrypto/doc/EVP_SignInit.pod
+++ b/src/lib/libcrypto/doc/EVP_SignInit.pod
@@ -30,9 +30,11 @@ signature context B<ctx>. This function can be called several times on the
30same B<ctx> to include additional data. 30same B<ctx> to include additional data.
31 31
32EVP_SignFinal() signs the data in B<ctx> using the private key B<pkey> and 32EVP_SignFinal() signs the data in B<ctx> using the private key B<pkey> and
33places the signature in B<sig>. The number of bytes of data written (i.e. the 33places the signature in B<sig>. B<sig> must be at least EVP_PKEY_size(pkey)
34length of the signature) will be written to the integer at B<s>, at most 34bytes in size. B<s> is an OUT parameter, and not used as an IN parameter.
35EVP_PKEY_size(pkey) bytes will be written. 35The number of bytes of data written (i.e. the length of the signature)
36will be written to the integer at B<s>, at most EVP_PKEY_size(pkey) bytes
37will be written.
36 38
37EVP_SignInit() initializes a signing context B<ctx> to use the default 39EVP_SignInit() initializes a signing context B<ctx> to use the default
38implementation of digest B<type>. 40implementation of digest B<type>.