Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 692240 | Differences between
and this patch

Collapse All | Expand All

(-)libp11-0.4.10/src/p11_rsa.c (-1 / +1 lines)
Lines 430-436 Link Here
430
430
431
#endif
431
#endif
432
432
433
#if OPENSSL_VERSION_NUMBER < 0x10100005L || defined(LIBRESSL_VERSION_NUMBER)
433
#if OPENSSL_VERSION_NUMBER < 0x10100005L || ( defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x3000000L )
434
434
435
static int RSA_meth_set_flags(RSA_METHOD *meth, int flags)
435
static int RSA_meth_set_flags(RSA_METHOD *meth, int flags)
436
{
436
{
(-)libp11-0.4.10/src/p11_pkey.c (+7 lines)
Lines 90-95 Link Here
90
	unsigned char *tbuf;
90
	unsigned char *tbuf;
91
} RSA_PKEY_CTX;
91
} RSA_PKEY_CTX;
92
92
93
#endif
94
95
#if OPENSSL_VERSION_NUMBER < 0x10002000L || ( defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x3000100L )
93
static int EVP_PKEY_CTX_get_signature_md(EVP_PKEY_CTX *ctx, const EVP_MD **pmd)
96
static int EVP_PKEY_CTX_get_signature_md(EVP_PKEY_CTX *ctx, const EVP_MD **pmd)
94
{
97
{
95
	RSA_PKEY_CTX *rctx = EVP_PKEY_CTX_get_data(ctx);
98
	RSA_PKEY_CTX *rctx = EVP_PKEY_CTX_get_data(ctx);
Lines 99-104 Link Here
99
	return 1;
102
	return 1;
100
}
103
}
101
104
105
#endif
106
107
#if OPENSSL_VERSION_NUMBER < 0x10002000L || defined(LIBRESSL_VERSION_NUMBER)
108
102
static int EVP_PKEY_CTX_get_rsa_oaep_md(EVP_PKEY_CTX *ctx, const EVP_MD **pmd)
109
static int EVP_PKEY_CTX_get_rsa_oaep_md(EVP_PKEY_CTX *ctx, const EVP_MD **pmd)
103
{
110
{
104
	RSA_PKEY_CTX *rctx = EVP_PKEY_CTX_get_data(ctx);
111
	RSA_PKEY_CTX *rctx = EVP_PKEY_CTX_get_data(ctx);

Return to bug 692240