[openssl-commits] [openssl] master update
Rich Salz
rsalz at openssl.org
Wed Aug 9 15:27:53 UTC 2017
The branch master has been updated
via 0c714ba214eeceec617703fa1b9fc1cc4521529d (commit)
from 6a2da30347d81245dd4841833808621d189a9629 (commit)
- Log -----------------------------------------------------------------
commit 0c714ba214eeceec617703fa1b9fc1cc4521529d
Author: Paul Yang <yang.yang at baishancloud.com>
Date: Wed Aug 9 01:15:28 2017 +0800
Fix trivial nits in documentaion
Code Health (Tuesday?): Parameters' names are not correct.
Reviewed-by: Ben Kaduk <kaduk at mit.edu>
Reviewed-by: Rich Salz <rsalz at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4117)
-----------------------------------------------------------------------
Summary of changes:
doc/man3/EVP_DigestSignInit.pod | 2 +-
doc/man3/EVP_DigestVerifyInit.pod | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/doc/man3/EVP_DigestSignInit.pod b/doc/man3/EVP_DigestSignInit.pod
index 1f1a06c..c3513f5 100644
--- a/doc/man3/EVP_DigestSignInit.pod
+++ b/doc/man3/EVP_DigestSignInit.pod
@@ -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.
diff --git a/doc/man3/EVP_DigestVerifyInit.pod b/doc/man3/EVP_DigestVerifyInit.pod
index 481cea5..2191b9e 100644
--- a/doc/man3/EVP_DigestVerifyInit.pod
+++ b/doc/man3/EVP_DigestVerifyInit.pod
@@ -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.
More information about the openssl-commits
mailing list