From 6b056c414d1a80055405976ddf09d4dfee85ecf8 Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Thu, 18 Feb 1999 18:26:42 +0000 Subject: [PATCH] Fix case of new functions in error files. --- crypto/rsa/Makefile.ssl | 2 +- crypto/rsa/rsa.h | 2 ++ crypto/rsa/rsa_err.c | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/crypto/rsa/Makefile.ssl b/crypto/rsa/Makefile.ssl index ef4f30d8a6..29838c8fd3 100644 --- a/crypto/rsa/Makefile.ssl +++ b/crypto/rsa/Makefile.ssl @@ -81,7 +81,7 @@ clean: errors: $(ERRC).c -$(ERRC).c: $(ERR).err +$(ERRC).c: $(ERR).err $(ERR).h perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c diff --git a/crypto/rsa/rsa.h b/crypto/rsa/rsa.h index 26450a2536..5a8b1f8640 100644 --- a/crypto/rsa/rsa.h +++ b/crypto/rsa/rsa.h @@ -291,6 +291,8 @@ int RSA_padding_add_PKCS1_type_1(); int RSA_padding_check_PKCS1_type_1(); int RSA_padding_add_PKCS1_type_2(); int RSA_padding_check_PKCS1_type_2(); +int RSA_padding_add_PKCS1_OAEP(); +int RSA_padding_check_PKCS1_OAEP(); int RSA_padding_add_SSLv23(); int RSA_padding_check_SSLv23(); int RSA_padding_add_none(); diff --git a/crypto/rsa/rsa_err.c b/crypto/rsa/rsa_err.c index 88a3afd0bd..22d52548de 100644 --- a/crypto/rsa/rsa_err.c +++ b/crypto/rsa/rsa_err.c @@ -71,12 +71,12 @@ static ERR_STRING_DATA RSA_str_functs[]= {ERR_PACK(0,RSA_F_RSA_GENERATE_KEY,0), "RSA_generate_key"}, {ERR_PACK(0,RSA_F_RSA_NEW_METHOD,0), "RSA_new_method"}, {ERR_PACK(0,RSA_F_RSA_PADDING_ADD_NONE,0), "RSA_padding_add_none"}, -{ERR_PACK(0,RSA_F_RSA_PADDING_ADD_PKCS1_OAEP,0), "RSA_PADDING_ADD_PKCS1_OAEP"}, +{ERR_PACK(0,RSA_F_RSA_PADDING_ADD_PKCS1_OAEP,0), "RSA_padding_add_PKCS1_OAEP"}, {ERR_PACK(0,RSA_F_RSA_PADDING_ADD_PKCS1_TYPE_1,0), "RSA_padding_add_PKCS1_type_1"}, {ERR_PACK(0,RSA_F_RSA_PADDING_ADD_PKCS1_TYPE_2,0), "RSA_padding_add_PKCS1_type_2"}, {ERR_PACK(0,RSA_F_RSA_PADDING_ADD_SSLV23,0), "RSA_padding_add_SSLv23"}, {ERR_PACK(0,RSA_F_RSA_PADDING_CHECK_NONE,0), "RSA_padding_check_none"}, -{ERR_PACK(0,RSA_F_RSA_PADDING_CHECK_PKCS1_OAEP,0), "RSA_PADDING_CHECK_PKCS1_OAEP"}, +{ERR_PACK(0,RSA_F_RSA_PADDING_CHECK_PKCS1_OAEP,0), "RSA_padding_check_PKCS1_OAEP"}, {ERR_PACK(0,RSA_F_RSA_PADDING_CHECK_PKCS1_TYPE_1,0), "RSA_padding_check_PKCS1_type_1"}, {ERR_PACK(0,RSA_F_RSA_PADDING_CHECK_PKCS1_TYPE_2,0), "RSA_padding_check_PKCS1_type_2"}, {ERR_PACK(0,RSA_F_RSA_PADDING_CHECK_SSLV23,0), "RSA_padding_check_SSLv23"}, -- 2.39.5