Coverage Report

Created: 2025-06-13 06:55

/src/openssl/crypto/ess/ess_err.c
Line
Count
Source
1
/*
2
 * Generated by util/mkerr.pl DO NOT EDIT
3
 * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
4
 *
5
 * Licensed under the Apache License 2.0 (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 <openssl/err.h>
12
#include <openssl/esserr.h>
13
#include "crypto/esserr.h"
14
15
#ifndef OPENSSL_NO_ERR
16
17
static const ERR_STRING_DATA ESS_str_reasons[] = {
18
    {ERR_PACK(ERR_LIB_ESS, 0, ESS_R_EMPTY_ESS_CERT_ID_LIST),
19
    "empty ess cert id list"},
20
    {ERR_PACK(ERR_LIB_ESS, 0, ESS_R_ESS_CERT_DIGEST_ERROR),
21
    "ess cert digest error"},
22
    {ERR_PACK(ERR_LIB_ESS, 0, ESS_R_ESS_CERT_ID_NOT_FOUND),
23
    "ess cert id not found"},
24
    {ERR_PACK(ERR_LIB_ESS, 0, ESS_R_ESS_CERT_ID_WRONG_ORDER),
25
    "ess cert id wrong order"},
26
    {ERR_PACK(ERR_LIB_ESS, 0, ESS_R_ESS_DIGEST_ALG_UNKNOWN),
27
    "ess digest alg unknown"},
28
    {ERR_PACK(ERR_LIB_ESS, 0, ESS_R_ESS_SIGNING_CERTIFICATE_ERROR),
29
    "ess signing certificate error"},
30
    {ERR_PACK(ERR_LIB_ESS, 0, ESS_R_ESS_SIGNING_CERT_ADD_ERROR),
31
    "ess signing cert add error"},
32
    {ERR_PACK(ERR_LIB_ESS, 0, ESS_R_ESS_SIGNING_CERT_V2_ADD_ERROR),
33
    "ess signing cert v2 add error"},
34
    {ERR_PACK(ERR_LIB_ESS, 0, ESS_R_MISSING_SIGNING_CERTIFICATE_ATTRIBUTE),
35
    "missing signing certificate attribute"},
36
    {0, NULL}
37
};
38
39
#endif
40
41
int ossl_err_load_ESS_strings(void)
42
2
{
43
2
#ifndef OPENSSL_NO_ERR
44
2
    if (ERR_reason_error_string(ESS_str_reasons[0].error) == NULL)
45
2
        ERR_load_strings_const(ESS_str_reasons);
46
2
#endif
47
2
    return 1;
48
2
}