2016-05-18 05:38:18 +08:00
|
|
|
/*
|
2016-05-24 03:02:34 +08:00
|
|
|
* Generated by util/mkerr.pl DO NOT EDIT
|
2017-06-08 03:12:03 +08:00
|
|
|
* Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
|
2016-03-02 12:11:02 +08:00
|
|
|
*
|
2016-05-18 05:38:18 +08:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2016-03-02 12:11:02 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <openssl/err.h>
|
2017-06-08 03:12:03 +08:00
|
|
|
#include <openssl/kdferr.h>
|
2016-03-02 12:11:02 +08:00
|
|
|
|
|
|
|
#ifndef OPENSSL_NO_ERR
|
|
|
|
|
2017-06-08 03:12:03 +08:00
|
|
|
static const ERR_STRING_DATA KDF_str_functs[] = {
|
2017-07-22 23:43:05 +08:00
|
|
|
{ERR_PACK(ERR_LIB_KDF, KDF_F_PKEY_HKDF_CTRL_STR, 0), "pkey_hkdf_ctrl_str"},
|
2017-07-22 06:11:39 +08:00
|
|
|
{ERR_PACK(ERR_LIB_KDF, KDF_F_PKEY_HKDF_DERIVE, 0), "pkey_hkdf_derive"},
|
2017-06-08 03:12:03 +08:00
|
|
|
{ERR_PACK(ERR_LIB_KDF, KDF_F_PKEY_TLS1_PRF_CTRL_STR, 0),
|
|
|
|
"pkey_tls1_prf_ctrl_str"},
|
|
|
|
{ERR_PACK(ERR_LIB_KDF, KDF_F_PKEY_TLS1_PRF_DERIVE, 0),
|
|
|
|
"pkey_tls1_prf_derive"},
|
2016-03-02 12:11:02 +08:00
|
|
|
{0, NULL}
|
|
|
|
};
|
|
|
|
|
2017-06-08 03:12:03 +08:00
|
|
|
static const ERR_STRING_DATA KDF_str_reasons[] = {
|
|
|
|
{ERR_PACK(ERR_LIB_KDF, 0, KDF_R_INVALID_DIGEST), "invalid digest"},
|
|
|
|
{ERR_PACK(ERR_LIB_KDF, 0, KDF_R_MISSING_PARAMETER), "missing parameter"},
|
2017-07-22 23:43:05 +08:00
|
|
|
{ERR_PACK(ERR_LIB_KDF, 0, KDF_R_UNKNOWN_PARAMETER_TYPE),
|
|
|
|
"unknown parameter type"},
|
2017-06-08 03:12:03 +08:00
|
|
|
{ERR_PACK(ERR_LIB_KDF, 0, KDF_R_VALUE_MISSING), "value missing"},
|
2016-03-02 12:11:02 +08:00
|
|
|
{0, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2016-07-12 21:50:06 +08:00
|
|
|
int ERR_load_KDF_strings(void)
|
2016-03-02 12:11:02 +08:00
|
|
|
{
|
|
|
|
#ifndef OPENSSL_NO_ERR
|
|
|
|
if (ERR_func_error_string(KDF_str_functs[0].error) == NULL) {
|
2017-06-08 03:12:03 +08:00
|
|
|
ERR_load_strings_const(KDF_str_functs);
|
|
|
|
ERR_load_strings_const(KDF_str_reasons);
|
2016-03-02 12:11:02 +08:00
|
|
|
}
|
|
|
|
#endif
|
2016-07-12 21:50:06 +08:00
|
|
|
return 1;
|
2016-03-02 12:11:02 +08:00
|
|
|
}
|