mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-12-14 17:27:30 +08:00
32 lines
770 B
C
32 lines
770 B
C
/* opensslv.h
|
|
*
|
|
* Copyright (C) 2006-2017 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(HAVE_STUNNEL) || defined(HAVE_LIGHTY) || defined(WOLFSSL_NGINX) || defined(WOLFSSL_HAPROXY) || defined(WOLFSSL_SIGNAL)
|
|
/* 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 */
|