[openssl-commits] [openssl] OpenSSL_1_1_1-stable update

Matt Caswell matt at openssl.org
Fri Oct 12 08:53:28 UTC 2018


The branch OpenSSL_1_1_1-stable has been updated
       via  ed5108a387d98fa75c0810c33a05fc9e3bf0355b (commit)
      from  a53561e822f151071a834ddeb3870b1363ac9e1e (commit)


- Log -----------------------------------------------------------------
commit ed5108a387d98fa75c0810c33a05fc9e3bf0355b
Author: Matt Caswell <matt at openssl.org>
Date:   Thu Oct 11 11:59:57 2018 +0100

    Fix a typo in a macro
    
    Fixes #7385
    
    Reviewed-by: Tim Hudson <tjh at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/7385)
    
    (cherry picked from commit 990fe909949a58398b3a0cbbdc52b9bbb9cefaa0)

-----------------------------------------------------------------------

Summary of changes:
 include/openssl/rsa.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/openssl/rsa.h b/include/openssl/rsa.h
index a38ba12..cdce126 100644
--- a/include/openssl/rsa.h
+++ b/include/openssl/rsa.h
@@ -160,7 +160,7 @@ extern "C" {
 
 # define  EVP_PKEY_CTX_set_rsa_pss_keygen_md(ctx, md) \
         EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA_PSS,  \
-                          EVP_PKEY_OP_TYPE_KEYGEN, EVP_PKEY_CTRL_MD,  \
+                          EVP_PKEY_OP_KEYGEN, EVP_PKEY_CTRL_MD,  \
                           0, (void *)(md))
 
 # define EVP_PKEY_CTRL_RSA_PADDING       (EVP_PKEY_ALG_CTRL + 1)


More information about the openssl-commits mailing list