Fix trivial nits in documentaion
authorPaul Yang <yang.yang@baishancloud.com>
Tue, 8 Aug 2017 17:15:28 +0000 (01:15 +0800)
committerRich Salz <rsalz@openssl.org>
Wed, 9 Aug 2017 15:27:24 +0000 (11:27 -0400)
Code Health (Tuesday?): Parameters' names are not correct.

Reviewed-by: Ben Kaduk <kaduk@mit.edu>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4117)

doc/man3/EVP_DigestSignInit.pod
doc/man3/EVP_DigestVerifyInit.pod

index 1f1a06c63f65aecefabc3fc5da85b4420c33a607..c3513f5320dcf05ea5ef1de73b778053ce117f2e 100644 (file)
@@ -23,7 +23,7 @@ EVP_DigestSign - EVP signing functions
 The EVP signature routines are a high level interface to digital signatures.
 
 EVP_DigestSignInit() sets up signing context B<ctx> to use digest B<type> from
-ENGINE B<impl> and private key B<pkey>. B<ctx> must be created with
+ENGINE B<e> and private key B<pkey>. B<ctx> must be created with
 EVP_MD_CTX_new() before calling this function. If B<pctx> is not NULL the
 EVP_PKEY_CTX of the signing operation will be written to B<*pctx>: this can
 be used to set alternative signing options.
index 481cea59cff853751ad7d6b63c03b467a4e2638b..2191b9edbf363b8ca8e9b59af1592101dda0c499 100644 (file)
@@ -22,7 +22,7 @@ EVP_DigestVerify - EVP signature verification functions
 The EVP signature routines are a high level interface to digital signatures.
 
 EVP_DigestVerifyInit() sets up verification context B<ctx> to use digest
-B<type> from ENGINE B<impl> and public key B<pkey>. B<ctx> must be created
+B<type> from ENGINE B<e> and public key B<pkey>. B<ctx> must be created
 with EVP_MD_CTX_new() before calling this function. If B<pctx> is not NULL the
 EVP_PKEY_CTX of the verification operation will be written to B<*pctx>: this
 can be used to set alternative verification options.