Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 658216
Collapse All | Expand All

(-)pypy3-v6.0.0-src/lib_pypy/_cffi_ssl/_cffi_src/openssl/x509.py (-1 / +1 lines)
Lines 341-347 void X509_REQ_get0_signature(const X509_ Link Here
341
CUSTOMIZATIONS = """
341
CUSTOMIZATIONS = """
342
/* Added in 1.0.2 beta but we need it in all versions now due to the great
342
/* Added in 1.0.2 beta but we need it in all versions now due to the great
343
   opaquing. */
343
   opaquing. */
344
#if CRYPTOGRAPHY_OPENSSL_LESS_THAN_102 || defined(LIBRESSL_VERSION_NUMBER)
344
#if CRYPTOGRAPHY_OPENSSL_LESS_THAN_102 || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x20700000L)
345
/* from x509/x_x509.c version 1.0.2 */
345
/* from x509/x_x509.c version 1.0.2 */
346
void X509_get0_signature(ASN1_BIT_STRING **psig, X509_ALGOR **palg,
346
void X509_get0_signature(ASN1_BIT_STRING **psig, X509_ALGOR **palg,
347
                         const X509 *x)
347
                         const X509 *x)
(-)pypy3-v6.0.0-src/lib_pypy/_cffi_ssl/_cffi_src/openssl/x509_vfy.py (-1 / +1 lines)
Lines 292-298 int X509_OBJECT_get_type(const X509_OBJE Link Here
292
}
292
}
293
#endif
293
#endif
294
294
295
#if CRYPTOGRAPHY_OPENSSL_LESS_THAN_110PRE5 || defined(LIBRESSL_VERSION_NUMBER)
295
#if CRYPTOGRAPHY_OPENSSL_LESS_THAN_110PRE5 || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x20700000L)
296
X509 *X509_OBJECT_get0_X509(X509_OBJECT *x) {
296
X509 *X509_OBJECT_get0_X509(X509_OBJECT *x) {
297
    return x->data.x509;
297
    return x->data.x509;
298
}
298
}

Return to bug 658216