3a0b6b1fc97be8e1a04868a4cfd2ddada6479519
[openssl.git] / crypto / kdf / kdf_err.c
1 /*
2  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 /*
11  * NOTE: this file was auto generated by the mkerr.pl script: any changes
12  * made to it will be overwritten when the script next updates this file,
13  * only reason strings will be preserved.
14  */
15
16 #include <stdio.h>
17 #include <openssl/err.h>
18 #include <openssl/kdf.h>
19
20 /* BEGIN ERROR CODES */
21 #ifndef OPENSSL_NO_ERR
22
23 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_KDF,func,0)
24 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_KDF,0,reason)
25
26 static ERR_STRING_DATA KDF_str_functs[] = {
27     {ERR_FUNC(KDF_F_PKEY_TLS1_PRF_CTRL_STR), "pkey_tls1_prf_ctrl_str"},
28     {ERR_FUNC(KDF_F_PKEY_TLS1_PRF_DERIVE), "pkey_tls1_prf_derive"},
29     {0, NULL}
30 };
31
32 static ERR_STRING_DATA KDF_str_reasons[] = {
33     {ERR_REASON(KDF_R_INVALID_DIGEST), "invalid digest"},
34     {ERR_REASON(KDF_R_MISSING_PARAMETER), "missing parameter"},
35     {ERR_REASON(KDF_R_VALUE_MISSING), "value missing"},
36     {0, NULL}
37 };
38
39 #endif
40
41 void ERR_load_KDF_strings(void)
42 {
43 #ifndef OPENSSL_NO_ERR
44
45     if (ERR_func_error_string(KDF_str_functs[0].error) == NULL) {
46         ERR_load_strings(0, KDF_str_functs);
47         ERR_load_strings(0, KDF_str_reasons);
48     }
49 #endif
50 }