diff options
| author | Anton Gerasimov <anton.gerasimov@here.com> | 2018-02-01 17:28:22 +0100 |
|---|---|---|
| committer | Anton Gerasimov <anton.gerasimov@here.com> | 2018-02-01 17:28:22 +0100 |
| commit | 296497365ed9fa11c752d51d1e71b25a054cd5d4 (patch) | |
| tree | d92477a7b4eb371f1f057e13059bd2e692fbf51e /recipes-support/libp11/files/0001-Workaround-for-a-buggy-version-of-openssl-1.0.2m.patch | |
| parent | 1ea77e2a98e77956d687cfa6c445518938a5e809 (diff) | |
| parent | e408922dccefca6cfe103be2dce18d7bcc004f1e (diff) | |
| download | meta-updater-296497365ed9fa11c752d51d1e71b25a054cd5d4.tar.gz | |
Merge branch 'rocko'
Diffstat (limited to 'recipes-support/libp11/files/0001-Workaround-for-a-buggy-version-of-openssl-1.0.2m.patch')
| -rw-r--r-- | recipes-support/libp11/files/0001-Workaround-for-a-buggy-version-of-openssl-1.0.2m.patch | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/recipes-support/libp11/files/0001-Workaround-for-a-buggy-version-of-openssl-1.0.2m.patch b/recipes-support/libp11/files/0001-Workaround-for-a-buggy-version-of-openssl-1.0.2m.patch new file mode 100644 index 0000000..0538eff --- /dev/null +++ b/recipes-support/libp11/files/0001-Workaround-for-a-buggy-version-of-openssl-1.0.2m.patch | |||
| @@ -0,0 +1,42 @@ | |||
| 1 | From ccab5ce63dd5d3dbb4bd02998d21d34407e550f2 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Anton Gerasimov <anton.gerasimov@here.com> | ||
| 3 | Date: Fri, 19 Jan 2018 12:44:27 +0100 | ||
| 4 | Subject: [PATCH] Workaround for a buggy version of openssl (1.0.2m) | ||
| 5 | |||
| 6 | --- | ||
| 7 | src/p11_pkey.c | 12 +++++++++--- | ||
| 8 | 1 file changed, 9 insertions(+), 3 deletions(-) | ||
| 9 | |||
| 10 | diff --git a/src/p11_pkey.c b/src/p11_pkey.c | ||
| 11 | index 45d5ad3..75625e6 100644 | ||
| 12 | --- a/src/p11_pkey.c | ||
| 13 | +++ b/src/p11_pkey.c | ||
| 14 | @@ -139,8 +139,14 @@ static void EVP_PKEY_meth_copy(EVP_PKEY_METHOD *dst, const EVP_PKEY_METHOD *src) | ||
| 15 | |||
| 16 | #endif | ||
| 17 | |||
| 18 | -#if OPENSSL_VERSION_NUMBER < 0x100020d0L || defined(LIBRESSL_VERSION_NUMBER) | ||
| 19 | -static void EVP_PKEY_meth_get_sign(EVP_PKEY_METHOD *pmeth, | ||
| 20 | +#if OPENSSL_VERSION_NUMBER <= 0x100020e0L || defined(LIBRESSL_VERSION_NUMBER) | ||
| 21 | + | ||
| 22 | +# if (OPENSSL_VERSION_NUMBER & 0xFFFFFFF0) == 0x100020d0L | ||
| 23 | +# undef EVP_PKEY_meth_get_sign | ||
| 24 | +# undef EVP_PKEY_meth_get_decrypt | ||
| 25 | +# endif | ||
| 26 | + | ||
| 27 | +void EVP_PKEY_meth_get_sign(EVP_PKEY_METHOD *pmeth, | ||
| 28 | int (**psign_init) (EVP_PKEY_CTX *ctx), | ||
| 29 | int (**psign) (EVP_PKEY_CTX *ctx, | ||
| 30 | unsigned char *sig, size_t *siglen, | ||
| 31 | @@ -152,7 +158,7 @@ static void EVP_PKEY_meth_get_sign(EVP_PKEY_METHOD *pmeth, | ||
| 32 | *psign = pmeth->sign; | ||
| 33 | } | ||
| 34 | |||
| 35 | -static void EVP_PKEY_meth_get_decrypt(EVP_PKEY_METHOD *pmeth, | ||
| 36 | +void EVP_PKEY_meth_get_decrypt(EVP_PKEY_METHOD *pmeth, | ||
| 37 | int (**pdecrypt_init) (EVP_PKEY_CTX *ctx), | ||
| 38 | int (**pdecrypt) (EVP_PKEY_CTX *ctx, | ||
| 39 | unsigned char *out, | ||
| 40 | -- | ||
| 41 | 2.15.1 | ||
| 42 | |||
