diff options
Diffstat (limited to 'src/lib/libcrypto/doc/EVP_SignInit.pod')
-rw-r--r-- | src/lib/libcrypto/doc/EVP_SignInit.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/doc/EVP_SignInit.pod b/src/lib/libcrypto/doc/EVP_SignInit.pod index 620a623ab6..682724b157 100644 --- a/src/lib/libcrypto/doc/EVP_SignInit.pod +++ b/src/lib/libcrypto/doc/EVP_SignInit.pod | |||
@@ -32,7 +32,7 @@ same B<ctx> to include additional data. | |||
32 | EVP_SignFinal() signs the data in B<ctx> using the private key B<pkey> and | 32 | EVP_SignFinal() signs the data in B<ctx> using the private key B<pkey> and |
33 | places the signature in B<sig>. The number of bytes of data written (i.e. the | 33 | places the signature in B<sig>. The number of bytes of data written (i.e. the |
34 | length of the signature) will be written to the integer at B<s>, at most | 34 | length of the signature) will be written to the integer at B<s>, at most |
35 | EVP_PKEY_size(pkey) bytes will be written. | 35 | EVP_PKEY_size(pkey) bytes will be written. |
36 | 36 | ||
37 | EVP_SignInit() initializes a signing context B<ctx> to use the default | 37 | EVP_SignInit() initializes a signing context B<ctx> to use the default |
38 | implementation of digest B<type>. | 38 | implementation of digest B<type>. |
@@ -57,7 +57,7 @@ transparent to the algorithm used and much more flexible. | |||
57 | 57 | ||
58 | Due to the link between message digests and public key algorithms the correct | 58 | Due to the link between message digests and public key algorithms the correct |
59 | digest algorithm must be used with the correct public key type. A list of | 59 | digest algorithm must be used with the correct public key type. A list of |
60 | algorithms and associated public key algorithms appears in | 60 | algorithms and associated public key algorithms appears in |
61 | L<EVP_DigestInit(3)|EVP_DigestInit(3)>. | 61 | L<EVP_DigestInit(3)|EVP_DigestInit(3)>. |
62 | 62 | ||
63 | When signing with DSA private keys the random number generator must be seeded | 63 | When signing with DSA private keys the random number generator must be seeded |
@@ -74,7 +74,7 @@ will occur. | |||
74 | 74 | ||
75 | =head1 BUGS | 75 | =head1 BUGS |
76 | 76 | ||
77 | Older versions of this documentation wrongly stated that calls to | 77 | Older versions of this documentation wrongly stated that calls to |
78 | EVP_SignUpdate() could not be made after calling EVP_SignFinal(). | 78 | EVP_SignUpdate() could not be made after calling EVP_SignFinal(). |
79 | 79 | ||
80 | Since the private key is passed in the call to EVP_SignFinal() any error | 80 | Since the private key is passed in the call to EVP_SignFinal() any error |