mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-08 04:25:07 +01:00
130 lines
4.4 KiB
C
130 lines
4.4 KiB
C
/* crypto.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
|
|
*/
|
|
|
|
/* crypto.h for openSSL */
|
|
|
|
#ifndef WOLFSSL_CRYPTO_H_
|
|
#define WOLFSSL_CRYPTO_H_
|
|
|
|
#include <libs/libwolfssl/wolfcrypt/settings.h>
|
|
|
|
typedef struct WOLFSSL_INIT_SETTINGS {
|
|
char* appname;
|
|
} WOLFSSL_INIT_SETTINGS;
|
|
typedef WOLFSSL_INIT_SETTINGS OPENSSL_INIT_SETTINGS;
|
|
|
|
typedef struct WOLFSSL_CRYPTO_THREADID {
|
|
int dummy;
|
|
} WOLFSSL_CRYPTO_THREADID;
|
|
typedef struct crypto_threadid_st CRYPTO_THREADID;
|
|
|
|
typedef struct CRYPTO_EX_DATA CRYPTO_EX_DATA;
|
|
typedef void (CRYPTO_free_func)(void* parent, void* ptr, CRYPTO_EX_DATA* ad, int idx,
|
|
long argl, void* argp);
|
|
|
|
#include <libs/libwolfssl/openssl/opensslv.h>
|
|
#include <libs/libwolfssl/openssl/conf.h>
|
|
|
|
#ifdef WOLFSSL_PREFIX
|
|
#include "prefix_crypto.h"
|
|
#endif
|
|
|
|
WOLFSSL_API const char* wolfSSLeay_version(int type);
|
|
WOLFSSL_API unsigned long wolfSSLeay(void);
|
|
WOLFSSL_API unsigned long wolfSSL_OpenSSL_version_num(void);
|
|
|
|
#ifdef OPENSSL_EXTRA
|
|
WOLFSSL_API void wolfSSL_OPENSSL_free(void*);
|
|
WOLFSSL_API void *wolfSSL_OPENSSL_malloc(size_t a);
|
|
WOLFSSL_API int wolfSSL_OPENSSL_hexchar2int(unsigned char c);
|
|
WOLFSSL_API unsigned char *wolfSSL_OPENSSL_hexstr2buf(const char *str, long *len);
|
|
|
|
WOLFSSL_API int wolfSSL_OPENSSL_init_crypto(word64 opts, const OPENSSL_INIT_SETTINGS *settings);
|
|
#endif
|
|
|
|
#define crypto_threadid_st WOLFSSL_CRYPTO_THREADID
|
|
#define CRYPTO_THREADID WOLFSSL_CRYPTO_THREADID
|
|
|
|
#define SSLeay_version wolfSSLeay_version
|
|
#define SSLeay wolfSSLeay
|
|
#define OpenSSL_version_num wolfSSL_OpenSSL_version_num
|
|
|
|
#ifdef WOLFSSL_QT
|
|
#define SSLEAY_VERSION 0x10001000L
|
|
#else
|
|
#define SSLEAY_VERSION 0x0090600fL
|
|
#endif
|
|
#define SSLEAY_VERSION_NUMBER SSLEAY_VERSION
|
|
#define CRYPTO_lock wc_LockMutex_ex
|
|
|
|
/* this function was used to set the default malloc, free, and realloc */
|
|
#define CRYPTO_malloc_init() 0 /* CRYPTO_malloc_init is not needed */
|
|
|
|
#define OPENSSL_free wolfSSL_OPENSSL_free
|
|
#define OPENSSL_malloc wolfSSL_OPENSSL_malloc
|
|
#define OPENSSL_hexchar2int wolfSSL_OPENSSL_hexchar2int
|
|
#define OPENSSL_hexstr2buf wolfSSL_OPENSSL_hexstr2buf
|
|
|
|
#define OPENSSL_INIT_ENGINE_ALL_BUILTIN 0x00000001L
|
|
#define OPENSSL_INIT_ADD_ALL_CIPHERS 0x00000004L
|
|
#define OPENSSL_INIT_ADD_ALL_DIGESTS 0x00000008L
|
|
#define OPENSSL_INIT_LOAD_CONFIG 0x00000040L
|
|
|
|
#define OPENSSL_init_crypto wolfSSL_OPENSSL_init_crypto
|
|
|
|
#ifdef WOLFSSL_OPENVPN
|
|
# define OPENSSL_assert(e) \
|
|
if (!(e)) { \
|
|
fprintf(stderr, "%s:%d wolfSSL internal error: assertion failed: " #e, \
|
|
__FILE__, __LINE__); \
|
|
raise(SIGABRT); \
|
|
_exit(3); \
|
|
}
|
|
#endif
|
|
|
|
#if defined(OPENSSL_ALL) || defined(HAVE_STUNNEL) || defined(WOLFSSL_NGINX) || \
|
|
defined(WOLFSSL_HAPROXY) || defined(OPENSSL_EXTRA) || defined(HAVE_EX_DATA)
|
|
#define CRYPTO_set_mem_ex_functions wolfSSL_CRYPTO_set_mem_ex_functions
|
|
#define FIPS_mode wolfSSL_FIPS_mode
|
|
#define FIPS_mode_set wolfSSL_FIPS_mode_set
|
|
#define CRYPTO_THREADID_set_callback wolfSSL_THREADID_set_callback
|
|
#define CRYPTO_THREADID_set_numeric wolfSSL_THREADID_set_numeric
|
|
#define CRYPTO_THREADID_current wolfSSL_THREADID_current
|
|
#define CRYPTO_THREADID_hash wolfSSL_THREADID_hash
|
|
|
|
#define CRYPTO_r_lock wc_LockMutex_ex
|
|
#define CRYPTO_unlock wc_LockMutex_ex
|
|
|
|
#define CRYPTO_THREAD_lock wc_LockMutex
|
|
#define CRYPTO_THREAD_r_lock wc_LockMutex
|
|
#define CRYPTO_THREAD_unlock wc_UnLockMutex
|
|
|
|
#define CRYPTO_THREAD_lock_new wc_InitAndAllocMutex
|
|
#define CRYPTO_THREAD_read_lock wc_LockMutex
|
|
#define CRYPTO_THREAD_write_lock wc_LockMutex
|
|
#define CRYPTO_THREAD_lock_free wc_FreeMutex
|
|
|
|
#define CRYPTO_set_ex_data wolfSSL_CRYPTO_set_ex_data
|
|
|
|
#endif /* OPENSSL_ALL || HAVE_STUNNEL || WOLFSSL_NGINX || WOLFSSL_HAPROXY || HAVE_EX_DATA */
|
|
|
|
#endif /* header */
|