Commit 3e30fa0a authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Add KDF error codes



Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent c748c114
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -157,6 +157,7 @@ static ERR_STRING_DATA ERR_str_libraries[] = {
    {ERR_PACK(ERR_LIB_HMAC, 0, 0), "HMAC routines"},
    {ERR_PACK(ERR_LIB_CT, 0, 0), "CT routines"},
    {ERR_PACK(ERR_LIB_ASYNC, 0, 0), "ASYNC routines"},
    {ERR_PACK(ERR_LIB_KDF, 0, 0), "KDF routines"},
    {0, NULL},
};

+2 −0
Original line number Diff line number Diff line
@@ -102,6 +102,7 @@
# include <openssl/ct.h>
#endif
#include <openssl/async.h>
#include <openssl/kdf.h>

void err_load_crypto_strings_intern(void)
{
@@ -158,4 +159,5 @@ void err_load_crypto_strings_intern(void)
# endif
    ERR_load_ASYNC_strings();
#endif
    ERR_load_KDF_strings();
}
+1 −0
Original line number Diff line number Diff line
@@ -35,6 +35,7 @@ L CMS include/openssl/cms.h crypto/cms/cms_err.c
L FIPS		include/openssl/fips.h		crypto/fips_err.h
L CT		include/openssl/ct.h		crypto/ct/ct_err.c
L ASYNC		include/openssl/async.h		crypto/async/async_err.c
L KDF		include/openssl/kdf.h		crypto/kdf/kdf_err.c

# additional header files to be scanned for function names
L NONE		crypto/x509/x509_vfy.h		NONE
+2 −2
Original line number Diff line number Diff line
@@ -15,8 +15,8 @@ CFLAGS= $(INCLUDES) $(CFLAG) $(SHARED_CFLAG)
GENERAL=Makefile

LIB=$(TOP)/libcrypto.a
LIBSRC=tls1_prf.c
LIBOBJ=tls1_prf.o
LIBSRC=tls1_prf.c kdf_err.c
LIBOBJ=tls1_prf.o kdf_err.o

SRC= $(LIBSRC)

+1 −1
Original line number Diff line number Diff line
LIBS=../../libcrypto
SOURCE[../../libcrypto]=\
        tls1_prf.c
        tls1_prf.c kdf_err.c
Loading