]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix case of new functions in error files.
authorBen Laurie <ben@openssl.org>
Thu, 18 Feb 1999 18:26:42 +0000 (18:26 +0000)
committerBen Laurie <ben@openssl.org>
Thu, 18 Feb 1999 18:26:42 +0000 (18:26 +0000)
crypto/rsa/Makefile.ssl
crypto/rsa/rsa.h
crypto/rsa/rsa_err.c

index ef4f30d8a6e5331ae4a9e791ccb3fdaefa3870e1..29838c8fd34af837690e393b741a4f5b795f3aa3 100644 (file)
@@ -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
 
index 26450a253656fc1e7dd8cfb368bd0ea51cd8fe04..5a8b1f86408d0b71fbd40a848273a404fe0952cf 100644 (file)
@@ -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();
index 88a3afd0bdebcf6f8a7760c4682598ac6ca2b142..22d52548debadfe09af49d9ff90fa1fcee1f1028 100644 (file)
@@ -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"},