aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMarkus Triska <triska@metalevel.at>2017-01-19 00:07:20 +0100
committerRich Salz <rsalz@openssl.org>2017-01-19 12:45:04 -0500
commit424baabdf5af540bda4a69122d274b071d804390 (patch)
tree8c3d1ab30682d69ffed8067708baeef749ffa56a /doc
parent4f326dd8998d5b33f72b11432f110e0f2cfcb92b (diff)
downloadopenssl-424baabdf5af540bda4a69122d274b071d804390.tar.gz
correct 3 mistakes
CLA: trivial Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2257)
Diffstat (limited to 'doc')
-rw-r--r--doc/man3/ECDSA_SIG_new.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man3/ECDSA_SIG_new.pod b/doc/man3/ECDSA_SIG_new.pod
index 2eb41502cc..9e1f662c62 100644
--- a/doc/man3/ECDSA_SIG_new.pod
+++ b/doc/man3/ECDSA_SIG_new.pod
@@ -76,7 +76,7 @@ created with the private EC key B<eckey>.
ECDSA_sign() computes a digital signature of the B<dgstlen> bytes hash value
B<dgst> using the private EC key B<eckey>. The DER encoded signatures is
-stored in B<sig> and it's length is returned in B<sig_len>. Note: B<sig> must
+stored in B<sig> and its length is returned in B<sig_len>. Note: B<sig> must
point to ECDSA_size(eckey) bytes of memory. The parameter B<type> is currently
ignored. ECDSA_sign() is wrapper function for ECDSA_sign_ex() with B<kinv>
and B<rp> set to NULL.
@@ -105,7 +105,7 @@ used in a later call to ECDSA_sign_ex() or ECDSA_do_sign_ex().
ECDSA_sign_ex() computes a digital signature of the B<dgstlen> bytes hash value
B<dgst> using the private EC key B<eckey> and the optional pre-computed values
-B<kinv> and B<rp>. The DER encoded signatures is stored in B<sig> and it's
+B<kinv> and B<rp>. The DER encoded signature is stored in B<sig> and its
length is returned in B<sig_len>. Note: B<sig> must point to ECDSA_size(eckey)
bytes of memory. The parameter B<type> is ignored.