2019-02-16 16:33:37 +08:00
|
|
|
/*
|
|
|
|
* Generated by util/mkerr.pl DO NOT EDIT
|
2021-02-18 22:57:13 +08:00
|
|
|
* Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved.
|
2019-02-16 16:33:37 +08:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2019-09-28 06:45:57 +08:00
|
|
|
#ifndef OSSL_INTERNAL_PROPERTYERR_H
|
|
|
|
# define OSSL_INTERNAL_PROPERTYERR_H
|
2020-11-12 17:36:47 +08:00
|
|
|
# pragma once
|
2019-02-16 16:33:37 +08:00
|
|
|
|
2019-07-12 02:01:56 +08:00
|
|
|
# include <openssl/opensslconf.h>
|
|
|
|
# include <openssl/symhacks.h>
|
|
|
|
|
2019-02-16 16:33:37 +08:00
|
|
|
# ifdef __cplusplus
|
2020-11-12 17:36:47 +08:00
|
|
|
extern "C" {
|
2019-02-16 16:33:37 +08:00
|
|
|
# endif
|
2020-11-12 17:36:47 +08:00
|
|
|
|
2021-05-25 10:04:22 +08:00
|
|
|
int ossl_err_load_PROP_strings(void);
|
2019-02-16 16:33:37 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* PROP reason codes.
|
|
|
|
*/
|
|
|
|
# define PROP_R_NAME_TOO_LONG 100
|
|
|
|
# define PROP_R_NOT_AN_ASCII_CHARACTER 101
|
|
|
|
# define PROP_R_NOT_AN_HEXADECIMAL_DIGIT 102
|
|
|
|
# define PROP_R_NOT_AN_IDENTIFIER 103
|
|
|
|
# define PROP_R_NOT_AN_OCTAL_DIGIT 104
|
|
|
|
# define PROP_R_NOT_A_DECIMAL_DIGIT 105
|
2019-12-01 07:18:47 +08:00
|
|
|
# define PROP_R_NO_MATCHING_STRING_DELIMITER 106
|
2019-02-16 16:33:37 +08:00
|
|
|
# define PROP_R_NO_VALUE 107
|
|
|
|
# define PROP_R_PARSE_FAILED 108
|
|
|
|
# define PROP_R_STRING_TOO_LONG 109
|
|
|
|
# define PROP_R_TRAILING_CHARACTERS 110
|
|
|
|
|
2020-11-12 17:36:47 +08:00
|
|
|
|
|
|
|
# ifdef __cplusplus
|
|
|
|
}
|
|
|
|
# endif
|
2019-02-16 16:33:37 +08:00
|
|
|
#endif
|