Skip to content

Commit

Permalink
Fix trivial nits in documentaion
Browse files Browse the repository at this point in the history
Code Health (Tuesday?): Parameters' names are not correct.

Reviewed-by: Ben Kaduk <kaduk@mit.edu>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from #4117)
  • Loading branch information
InfoHunter authored and Rich Salz committed Aug 9, 2017
1 parent 6a2da30 commit 0c714ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/man3/EVP_DigestSignInit.pod
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion doc/man3/EVP_DigestVerifyInit.pod
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 0c714ba

Please sign in to comment.