VirtualBox

source: vbox/trunk/src/libs/openssl-1.1.0g/crypto/kdf/kdf_err.c@ 69881

Last change on this file since 69881 was 69881, checked in by vboxsync, 7 years ago

Update OpenSSL to 1.1.0g.
bugref:8070: src/libs maintenance

  • Property svn:eol-style set to native
File size: 1.3 KB
Line 
1/*
2 * Generated by util/mkerr.pl DO NOT EDIT
3 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
4 *
5 * Licensed under the OpenSSL license (the "License"). You may not use
6 * this file except in compliance with the License. You can obtain a copy
7 * in the file LICENSE in the source distribution or at
8 * https://www.openssl.org/source/license.html
9 */
10
11#include <stdio.h>
12#include <openssl/err.h>
13#include <openssl/kdf.h>
14
15/* BEGIN ERROR CODES */
16#ifndef OPENSSL_NO_ERR
17
18# define ERR_FUNC(func) ERR_PACK(ERR_LIB_KDF,func,0)
19# define ERR_REASON(reason) ERR_PACK(ERR_LIB_KDF,0,reason)
20
21static ERR_STRING_DATA KDF_str_functs[] = {
22 {ERR_FUNC(KDF_F_PKEY_TLS1_PRF_CTRL_STR), "pkey_tls1_prf_ctrl_str"},
23 {ERR_FUNC(KDF_F_PKEY_TLS1_PRF_DERIVE), "pkey_tls1_prf_derive"},
24 {0, NULL}
25};
26
27static ERR_STRING_DATA KDF_str_reasons[] = {
28 {ERR_REASON(KDF_R_INVALID_DIGEST), "invalid digest"},
29 {ERR_REASON(KDF_R_MISSING_PARAMETER), "missing parameter"},
30 {ERR_REASON(KDF_R_VALUE_MISSING), "value missing"},
31 {0, NULL}
32};
33
34#endif
35
36int ERR_load_KDF_strings(void)
37{
38#ifndef OPENSSL_NO_ERR
39
40 if (ERR_func_error_string(KDF_str_functs[0].error) == NULL) {
41 ERR_load_strings(0, KDF_str_functs);
42 ERR_load_strings(0, KDF_str_reasons);
43 }
44#endif
45 return 1;
46}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette