mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 09:05:06 +01:00
56 lines
2.0 KiB
C
56 lines
2.0 KiB
C
/* err.h
|
|
*
|
|
* Copyright (C) 2006-2021 wolfSSL Inc.
|
|
*
|
|
* This file is part of wolfSSL.
|
|
*
|
|
* wolfSSL is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* wolfSSL is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
*/
|
|
|
|
#ifndef WOLFSSL_OPENSSL_ERR_
|
|
#define WOLFSSL_OPENSSL_ERR_
|
|
|
|
#include <libwolfssl/wolfcrypt/logging.h>
|
|
|
|
/* err.h for openssl */
|
|
#define ERR_load_crypto_strings wolfSSL_ERR_load_crypto_strings
|
|
#define ERR_load_CRYPTO_strings wolfSSL_ERR_load_crypto_strings
|
|
#define ERR_peek_last_error wolfSSL_ERR_peek_last_error
|
|
|
|
/* fatal error */
|
|
#define ERR_R_MALLOC_FAILURE MEMORY_E
|
|
#define ERR_R_PASSED_NULL_PARAMETER BAD_FUNC_ARG
|
|
#define ERR_R_DISABLED NOT_COMPILED_IN
|
|
#define ERR_R_PASSED_INVALID_ARGUMENT BAD_FUNC_ARG
|
|
#define RSA_R_UNKNOWN_PADDING_TYPE RSA_PAD_E
|
|
#define EC_R_BUFFER_TOO_SMALL BUFFER_E
|
|
|
|
/* SSL function codes */
|
|
#define RSA_F_RSA_OSSL_PRIVATE_ENCRYPT 1
|
|
#define SSL_F_SSL_CTX_USE_CERTIFICATE_FILE 2
|
|
#define SSL_F_SSL_USE_PRIVATEKEY 3
|
|
#define EC_F_EC_GFP_SIMPLE_POINT2OCT 4
|
|
|
|
/* reasons */
|
|
#define ERR_R_SYS_LIB 1
|
|
#define PKCS12_R_MAC_VERIFY_FAILURE 2
|
|
|
|
#define RSAerr(f,r) ERR_put_error(0,(f),(r),__FILE__,__LINE__)
|
|
#define SSLerr(f,r) ERR_put_error(0,(f),(r),__FILE__,__LINE__)
|
|
#define ECerr(f,r) ERR_put_error(0,(f),(r),__FILE__,__LINE__)
|
|
|
|
#endif /* WOLFSSL_OPENSSL_ERR_ */
|
|
|