mirror of
https://github.com/novatiq/packages.git
synced 2026-04-27 06:14:41 +01:00
python-cryptography: bump to version 3.3.1
Regenerated patches from: https://github.com/pyca/cryptography/pull/4920 The patch names were kept as generated via 'git format-patch 3.3.1..' And ran through quilt. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
From 7eefc9c72f522e414f953fee2d6ca9242c566107 Mon Sep 17 00:00:00 2001
|
||||
From: Rosen Penev <rosenp@gmail.com>
|
||||
Date: Fri, 7 Jun 2019 18:18:46 -0700
|
||||
Subject: [PATCH 1/7] Add new ASN1_STRING_get0_data API
|
||||
|
||||
Introduced with OpenSSL 1.1
|
||||
---
|
||||
src/_cffi_src/openssl/asn1.py | 4 ++++
|
||||
1 file changed, 4 insertions(+)
|
||||
|
||||
--- a/src/_cffi_src/openssl/asn1.py
|
||||
+++ b/src/_cffi_src/openssl/asn1.py
|
||||
@@ -45,6 +45,7 @@ void ASN1_OBJECT_free(ASN1_OBJECT *);
|
||||
|
||||
/* ASN1 STRING */
|
||||
unsigned char *ASN1_STRING_data(ASN1_STRING *);
|
||||
+const unsigned char *ASN1_STRING_get0_data(const ASN1_STRING *);
|
||||
int ASN1_STRING_set(ASN1_STRING *, const void *, int);
|
||||
|
||||
/* ASN1 OCTET STRING */
|
||||
@@ -105,4 +106,7 @@ ASN1_NULL *ASN1_NULL_new(void);
|
||||
"""
|
||||
|
||||
CUSTOMIZATIONS = """
|
||||
+#if (OPENSSL_API_COMPAT >= 0x10100000L) && !CRYPTOGRAPHY_IS_LIBRESSL
|
||||
+#define ASN1_STRING_data ASN1_STRING_get0_data
|
||||
+#endif
|
||||
"""
|
||||
Reference in New Issue
Block a user