aboutsummaryrefslogtreecommitdiffstats
path: root/testing/libtls-standalone/tls_compat.h
diff options
context:
space:
mode:
Diffstat (limited to 'testing/libtls-standalone/tls_compat.h')
-rw-r--r--testing/libtls-standalone/tls_compat.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/testing/libtls-standalone/tls_compat.h b/testing/libtls-standalone/tls_compat.h
deleted file mode 100644
index 8e4629e35a..0000000000
--- a/testing/libtls-standalone/tls_compat.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#include <string.h>
-
-#include <openssl/opensslv.h>
-#include <openssl/x509_vfy.h>
-
-#ifndef LIBTLS_TLS_COMPAT_H
-#define LIBTLS_TLS_COMPAT_H
-
-#ifndef X509_V_FLAG_NO_CHECK_TIME
-#define X509_V_FLAG_NO_CHECK_TIME 0
-#endif
-
-#ifndef SSL_OP_NO_CLIENT_RENEGOTIATION
-#define SSL_OP_NO_CLIENT_RENEGOTIATION 0
-#endif
-
-int SSL_CTX_load_verify_mem(SSL_CTX *ctx, void *buf, int len);
-
-int ASN1_time_parse(const char *bytes, size_t len, struct tm *tm, int mode);
-
-int SSL_CTX_use_certificate_chain_mem(SSL_CTX *, char *buf, off_t);
-
-#endif