summaryrefslogtreecommitdiff
path: root/net/freerdp1/files/patch-libfreerdp_crypto_opensslcompat.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/freerdp1/files/patch-libfreerdp_crypto_opensslcompat.h')
-rw-r--r--net/freerdp1/files/patch-libfreerdp_crypto_opensslcompat.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/net/freerdp1/files/patch-libfreerdp_crypto_opensslcompat.h b/net/freerdp1/files/patch-libfreerdp_crypto_opensslcompat.h
deleted file mode 100644
index f2ddc9e9a6b7..000000000000
--- a/net/freerdp1/files/patch-libfreerdp_crypto_opensslcompat.h
+++ /dev/null
@@ -1,64 +0,0 @@
---- libfreerdp/crypto/opensslcompat.h.orig 2018-11-15 22:42:46 UTC
-+++ libfreerdp/crypto/opensslcompat.h
-@@ -0,0 +1,61 @@
-+/**
-+ * FreeRDP: A Remote Desktop Protocol Implementation
-+ * OpenSSL Compatibility
-+ *
-+ * Copyright (C) 2016 Norbert Federa <norbert.federa@thincast.com>
-+ *
-+ * Licensed under the Apache License, Version 2.0 (the "License");
-+ * you may not use this file except in compliance with the License.
-+ * You may obtain a copy of the License at
-+ *
-+ * http://www.apache.org/licenses/LICENSE-2.0
-+ *
-+ * Unless required by applicable law or agreed to in writing, software
-+ * distributed under the License is distributed on an "AS IS" BASIS,
-+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-+ * See the License for the specific language governing permissions and
-+ * limitations under the License.
-+ */
-+
-+#ifndef FREERDP_CRYPTO_OPENSSLCOMPAT_H
-+#define FREERDP_CRYPTO_OPENSSLCOMPAT_H
-+
-+#ifdef HAVE_CONFIG_H
-+#include "config.h"
-+#endif
-+
-+#include <freerdp/api.h>
-+
-+#include <openssl/opensslv.h>
-+
-+#if OPENSSL_VERSION_NUMBER < 0x10100000L
-+
-+#include <openssl/bio.h>
-+#include <openssl/rsa.h>
-+#include <openssl/bn.h>
-+
-+#define BIO_get_data(b) (b)->ptr
-+#define BIO_set_data(b,v) (b)->ptr = v
-+#define BIO_get_init(b) (b)->init
-+#define BIO_set_init(b,v) (b)->init = v
-+#define BIO_get_next(b,v) (b)->next_bio
-+#define BIO_set_next(b,v) (b)->next_bio = v
-+#define BIO_get_shutdown(b) (b)->shutdown
-+#define BIO_set_shutdown(b,v) (b)->shutdown = v
-+#define BIO_get_retry_reason(b) (b)->retry_reason
-+#define BIO_set_retry_reason(b,v) (b)->retry_reason = v
-+
-+#define BIO_meth_set_write(b,f) (b)->bwrite = (f)
-+#define BIO_meth_set_read(b,f) (b)->bread = (f)
-+#define BIO_meth_set_puts(b,f) (b)->bputs = (f)
-+#define BIO_meth_set_gets(b,f) (b)->bgets = (f)
-+#define BIO_meth_set_ctrl(b,f) (b)->ctrl = (f)
-+#define BIO_meth_set_create(b,f) (b)->create = (f)
-+#define BIO_meth_set_destroy(b,f) (b)->destroy = (f)
-+#define BIO_meth_set_callback_ctrl(b,f) (b)->callback_ctrl = (f)
-+
-+BIO_METHOD* BIO_meth_new(int type, const char* name);
-+void RSA_get0_key(const RSA* r, const BIGNUM** n, const BIGNUM** e, const BIGNUM** d);
-+
-+#endif /* OPENSSL < 1.1.0 */
-+#endif /* FREERDP_CRYPTO_OPENSSLCOMPAT_H */