rand_err.c 1.9 KB
Newer Older
1 2
/*
 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4 5 6 7
 * 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
8 9
 */

10 11
/*
 * NOTE: this file was auto generated by the mkerr.pl script: any changes
12 13
 * made to it will be overwritten when the script next updates this file,
 * only reason strings will be preserved.
14 15 16 17 18 19 20
 */

#include <stdio.h>
#include <openssl/err.h>
#include <openssl/rand.h>

/* BEGIN ERROR CODES */
21
#ifndef OPENSSL_NO_ERR
D
Dr. Stephen Henson 已提交
22

23 24
# define ERR_FUNC(func) ERR_PACK(ERR_LIB_RAND,func,0)
# define ERR_REASON(reason) ERR_PACK(ERR_LIB_RAND,0,reason)
D
Dr. Stephen Henson 已提交
25

26 27 28 29 30 31
static ERR_STRING_DATA RAND_str_functs[] = {
    {ERR_FUNC(RAND_F_FIPS_RAND), "FIPS_RAND"},
    {ERR_FUNC(RAND_F_FIPS_RAND_SET_DT), "FIPS_RAND_SET_DT"},
    {ERR_FUNC(RAND_F_FIPS_SET_PRNG_SEED), "FIPS_SET_PRNG_SEED"},
    {ERR_FUNC(RAND_F_FIPS_SET_TEST_MODE), "FIPS_SET_TEST_MODE"},
    {ERR_FUNC(RAND_F_FIPS_X931_SET_DT), "FIPS_x931_set_dt"},
R
Rich Salz 已提交
32
    {ERR_FUNC(RAND_F_RAND_BYTES), "RAND_bytes"},
33 34 35
    {ERR_FUNC(RAND_F_RAND_GET_RAND_METHOD), "RAND_get_rand_method"},
    {0, NULL}
};
36

37 38 39 40 41 42 43 44 45 46 47
static ERR_STRING_DATA RAND_str_reasons[] = {
    {ERR_REASON(RAND_R_NOT_IN_TEST_MODE), "not in test mode"},
    {ERR_REASON(RAND_R_NO_KEY_SET), "no key set"},
    {ERR_REASON(RAND_R_PRNG_ERROR), "prng error"},
    {ERR_REASON(RAND_R_PRNG_KEYED), "prng keyed"},
    {ERR_REASON(RAND_R_PRNG_NOT_SEEDED), "PRNG not seeded"},
    {ERR_REASON(RAND_R_PRNG_SEED_MUST_NOT_MATCH_KEY),
     "prng seed must not match key"},
    {ERR_REASON(RAND_R_PRNG_STUCK), "prng stuck"},
    {0, NULL}
};
48 49 50 51

#endif

void ERR_load_RAND_strings(void)
52
{
53
#ifndef OPENSSL_NO_ERR
54

55 56 57 58
    if (ERR_func_error_string(RAND_str_functs[0].error) == NULL) {
        ERR_load_strings(0, RAND_str_functs);
        ERR_load_strings(0, RAND_str_reasons);
    }
59
#endif
60
}