mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-08-06 07:00:05 +08:00
33 lines
773 B
C
33 lines
773 B
C
/* opensslv.h
|
|
*
|
|
* Copyright (C) 2006-2018 wolfSSL Inc. All rights reserved.
|
|
*
|
|
* This file is part of wolfSSL.
|
|
*
|
|
* Contact licensing@wolfssl.com with any questions or comments.
|
|
*
|
|
* http://www.wolfssl.com
|
|
*/
|
|
|
|
|
|
/* opensslv.h compatibility */
|
|
|
|
#ifndef WOLFSSL_OPENSSLV_H_
|
|
#define WOLFSSL_OPENSSLV_H_
|
|
|
|
|
|
/* api version compatibility */
|
|
#if defined(OPENSSL_ALL) || defined(HAVE_STUNNEL) || defined(HAVE_LIGHTY) || \
|
|
defined(WOLFSSL_NGINX) || defined(WOLFSSL_HAPROXY)
|
|
/* version number can be increased for Lighty after compatibility for ECDH
|
|
is added */
|
|
#define OPENSSL_VERSION_NUMBER 0x10001000L
|
|
#else
|
|
#define OPENSSL_VERSION_NUMBER 0x0090810fL
|
|
#endif
|
|
|
|
#define OPENSSL_VERSION_TEXT LIBWOLFSSL_VERSION_STRING
|
|
|
|
|
|
#endif /* header */
|