2020-07-09 05:04:08 +08:00
|
|
|
/*
|
|
|
|
* Generated by util/mkerr.pl DO NOT EDIT
|
|
|
|
* Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License 2.0 (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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <openssl/err.h>
|
2020-08-17 03:25:08 +08:00
|
|
|
#include <openssl/decodererr.h>
|
2020-07-09 05:04:08 +08:00
|
|
|
|
|
|
|
#ifndef OPENSSL_NO_ERR
|
|
|
|
|
2020-08-17 03:25:08 +08:00
|
|
|
static const ERR_STRING_DATA OSSL_DECODER_str_reasons[] = {
|
|
|
|
{ERR_PACK(ERR_LIB_OSSL_DECODER, 0, OSSL_DECODER_R_MISSING_GET_PARAMS),
|
|
|
|
"missing get params"},
|
2020-07-09 05:04:08 +08:00
|
|
|
{0, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2020-08-17 03:25:08 +08:00
|
|
|
int ERR_load_OSSL_DECODER_strings(void)
|
2020-07-09 05:04:08 +08:00
|
|
|
{
|
|
|
|
#ifndef OPENSSL_NO_ERR
|
2020-08-17 03:25:08 +08:00
|
|
|
if (ERR_reason_error_string(OSSL_DECODER_str_reasons[0].error) == NULL)
|
|
|
|
ERR_load_strings_const(OSSL_DECODER_str_reasons);
|
2020-07-09 05:04:08 +08:00
|
|
|
#endif
|
|
|
|
return 1;
|
|
|
|
}
|