2018-01-25 00:56:02 +08:00
|
|
|
/*
|
|
|
|
* Generated by util/mkerr.pl DO NOT EDIT
|
2021-01-28 20:54:57 +08:00
|
|
|
* Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved.
|
2018-01-25 00:56:02 +08:00
|
|
|
*
|
2018-12-06 20:12:35 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2018-01-25 00:56:02 +08:00
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2020-11-12 17:36:47 +08:00
|
|
|
#ifndef OSSL_CRYPTO_SM2ERR_H
|
|
|
|
# define OSSL_CRYPTO_SM2ERR_H
|
|
|
|
# pragma once
|
2018-01-25 00:56:02 +08:00
|
|
|
|
2019-07-12 02:01:56 +08:00
|
|
|
# include <openssl/opensslconf.h>
|
|
|
|
# include <openssl/symhacks.h>
|
|
|
|
|
2020-11-12 17:36:47 +08:00
|
|
|
# ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
# endif
|
2018-05-18 04:08:33 +08:00
|
|
|
|
|
|
|
# ifndef OPENSSL_NO_SM2
|
|
|
|
|
2021-05-25 10:04:22 +08:00
|
|
|
int ossl_err_load_SM2_strings(void);
|
2018-01-25 00:56:02 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* SM2 reason codes.
|
|
|
|
*/
|
2018-05-31 23:30:33 +08:00
|
|
|
# define SM2_R_ASN1_ERROR 100
|
|
|
|
# define SM2_R_BAD_SIGNATURE 101
|
2018-06-19 03:51:56 +08:00
|
|
|
# define SM2_R_BUFFER_TOO_SMALL 107
|
2018-09-05 15:19:17 +08:00
|
|
|
# define SM2_R_DIST_ID_TOO_LARGE 110
|
|
|
|
# define SM2_R_ID_NOT_SET 112
|
2018-09-04 17:21:10 +08:00
|
|
|
# define SM2_R_ID_TOO_LARGE 111
|
2018-06-19 03:51:56 +08:00
|
|
|
# define SM2_R_INVALID_CURVE 108
|
2018-05-31 23:30:33 +08:00
|
|
|
# define SM2_R_INVALID_DIGEST 102
|
|
|
|
# define SM2_R_INVALID_DIGEST_TYPE 103
|
|
|
|
# define SM2_R_INVALID_ENCODING 104
|
|
|
|
# define SM2_R_INVALID_FIELD 105
|
2020-11-10 07:11:48 +08:00
|
|
|
# define SM2_R_INVALID_PRIVATE_KEY 113
|
2018-06-19 03:51:56 +08:00
|
|
|
# define SM2_R_NO_PARAMETERS_SET 109
|
2018-09-05 15:19:17 +08:00
|
|
|
# define SM2_R_USER_ID_TOO_LARGE 106
|
2018-01-25 00:56:02 +08:00
|
|
|
|
2020-11-12 17:36:47 +08:00
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifdef __cplusplus
|
|
|
|
}
|
2018-05-18 04:08:33 +08:00
|
|
|
# endif
|
2018-01-25 00:56:02 +08:00
|
|
|
#endif
|