]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Change name of parameter in documentation from sigret to sig
authorKurt Roeckx <kurt@roeckx.be>
Tue, 2 Aug 2022 16:49:40 +0000 (18:49 +0200)
committerHugo Landau <hlandau@openssl.org>
Thu, 4 Aug 2022 10:02:28 +0000 (11:02 +0100)
The rest of the documentation talks about sig, not sigret

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Todd Short <todd.short@me.com>
Reviewed-by: Hugo Landau <hlandau@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18943)

doc/man3/EVP_DigestSignInit.pod
doc/man3/EVP_DigestVerifyInit.pod
doc/man7/provider-signature.pod

index f770631c5c2461a7c068e54f04d0b3600838a25c..f8bd14145a79c9c22ede64131ada00733f552468 100644 (file)
@@ -18,7 +18,7 @@ EVP_DigestSignFinal, EVP_DigestSign - EVP signing functions
  int EVP_DigestSignUpdate(EVP_MD_CTX *ctx, const void *d, size_t cnt);
  int EVP_DigestSignFinal(EVP_MD_CTX *ctx, unsigned char *sig, size_t *siglen);
 
- int EVP_DigestSign(EVP_MD_CTX *ctx, unsigned char *sigret,
+ int EVP_DigestSign(EVP_MD_CTX *ctx, unsigned char *sig,
                     size_t *siglen, const unsigned char *tbs,
                     size_t tbslen);
 
index d83c2ba52476e8e81bedd89e099c7a108b202aec..42612d48d057fe879908a62bb7e565353b527b8d 100644 (file)
@@ -18,7 +18,7 @@ EVP_DigestVerifyFinal, EVP_DigestVerify - EVP signature verification functions
  int EVP_DigestVerifyUpdate(EVP_MD_CTX *ctx, const void *d, size_t cnt);
  int EVP_DigestVerifyFinal(EVP_MD_CTX *ctx, const unsigned char *sig,
                            size_t siglen);
- int EVP_DigestVerify(EVP_MD_CTX *ctx, const unsigned char *sigret,
+ int EVP_DigestVerify(EVP_MD_CTX *ctx, const unsigned char *sig,
                       size_t siglen, const unsigned char *tbs, size_t tbslen);
 
 =head1 DESCRIPTION
index 30de3d865529e1fdb9d30c67f8f8b31be6884c8f..7c350373167a05a699dc0e4d5eeb8ede470dd5ec 100644 (file)
@@ -50,7 +50,7 @@ provider-signature - The signature library E<lt>-E<gt> provider functions
  int OSSL_FUNC_signature_digest_sign_final(void *ctx, unsigned char *sig,
                                            size_t *siglen, size_t sigsize);
  int OSSL_FUNC_signature_digest_sign(void *ctx,
-                              unsigned char *sigret, size_t *siglen,
+                              unsigned char *sig, size_t *siglen,
                               size_t sigsize, const unsigned char *tbs,
                               size_t tbslen);