diff options
| author | Cristian Stoica <cristian.stoica@freescale.com> | 2015-07-17 17:29:44 +0800 |
|---|---|---|
| committer | Zhenhua Luo <zhenhua.luo@freescale.com> | 2015-07-20 17:24:46 +0800 |
| commit | 8dcd2490816db6397d1677da933c6c19e7fbdd4f (patch) | |
| tree | f2959e9dd028ea3b2a68d81b819b7186e4917c44 /recipes-kernel/cryptodev/files/0001-don-t-advertise-RSA-keygen.patch | |
| parent | ae92c669322865ac51321a65104a678ac9d713f8 (diff) | |
| download | meta-fsl-ppc-8dcd2490816db6397d1677da933c6c19e7fbdd4f.tar.gz | |
cryptodev: update to 1.7 plus FSL patches
To avoid build issue when Poky upgrades cryptodev, keep a copy
of cryptodev-{linux,modules,tests) recipe in this repository.
Based on the upstream, this includes the following FSL patches:
0001-add-support-for-composite-TLS10-SHA1-AES-algorithm-o.patch
0002-add-support-for-COMPAT_CIOCAUTHCRYPT-ioctl.patch
0003-PKC-support-added-in-cryptodev-module.patch
0004-Compat-versions-of-PKC-IOCTLs.patch
0005-Asynchronous-interface-changes-in-cryptodev.patch
0006-ECC_KEYGEN-and-DLC_KEYGEN-supported-in-cryptodev-mod.patch
0007-RCU-stall-fixed-in-PKC-asynchronous-interface.patch
0008-Add-RSA-Key-generation-offloading.patch
0009-Fixed-compilation-error-of-openssl-with-fsl-cryptode.patch
0010-add-support-for-composite-TLS10-SHA1-3DES-algorithm-.patch
0011-add-support-for-TLSv1.1-record-offload.patch
0012-add-support-for-TLSv1.2-record-offload.patch
0013-clean-up-code-layout.patch
0014-remove-redundant-data-copy-for-pkc-operations.patch
0015-fix-pkc-request-deallocation.patch
0016-add-basic-detection-of-asym-features.patch
0017-remove-dead-code.patch
0018-fix-compat-warnings.patch
0019-fix-size_t-print-format.patch
0020-fix-uninitialized-variable-compiler-warning.patch
Signed-off-by: Cristian Stoica <cristian.stoica@freescale.com>
Signed-off-by: Ting Liu <ting.liu@freescale.com>
Diffstat (limited to 'recipes-kernel/cryptodev/files/0001-don-t-advertise-RSA-keygen.patch')
| -rw-r--r-- | recipes-kernel/cryptodev/files/0001-don-t-advertise-RSA-keygen.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/recipes-kernel/cryptodev/files/0001-don-t-advertise-RSA-keygen.patch b/recipes-kernel/cryptodev/files/0001-don-t-advertise-RSA-keygen.patch new file mode 100644 index 0000000..10d6c8b --- /dev/null +++ b/recipes-kernel/cryptodev/files/0001-don-t-advertise-RSA-keygen.patch | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | From d30c9c64aca4a7905e1b7eb3e28e1c616191bd34 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Cristian Stoica <cristian.stoica@freescale.com> | ||
| 3 | Date: Tue, 9 Dec 2014 16:41:25 +0200 | ||
| 4 | Subject: [PATCH] don't advertise RSA keygen | ||
| 5 | |||
| 6 | Disable RSA keygen operations when they are not available. | ||
| 7 | |||
| 8 | Currently no testing can be done and this patch should be applied | ||
| 9 | selectively on platforms that have incomplete support for RSA operations | ||
| 10 | (for example pkc driver on C293) | ||
| 11 | |||
| 12 | Change-Id: Ic8df014623410c3cf4b0b217a246efcea8f2eeef | ||
| 13 | Signed-off-by: Cristian Stoica <cristian.stoica@freescale.com> | ||
| 14 | --- | ||
| 15 | ioctl.c | 2 +- | ||
| 16 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 17 | |||
| 18 | diff --git a/ioctl.c b/ioctl.c | ||
| 19 | index 53dbf64..27dc66e 100644 | ||
| 20 | --- a/ioctl.c | ||
| 21 | +++ b/ioctl.c | ||
| 22 | @@ -979,7 +979,7 @@ cryptodev_ioctl(struct file *filp, unsigned int cmd, unsigned long arg_) | ||
| 23 | case CIOCASYMFEAT: | ||
| 24 | ses = 0; | ||
| 25 | if (crypto_has_alg("pkc(rsa)", 0, 0)) | ||
| 26 | - ses = CRF_MOD_EXP_CRT | CRF_MOD_EXP | CRF_RSA_GENERATE_KEY; | ||
| 27 | + ses = CRF_MOD_EXP_CRT | CRF_MOD_EXP ; | ||
| 28 | if (crypto_has_alg("pkc(dsa)", 0, 0)) | ||
| 29 | ses |= CRF_DSA_SIGN | CRF_DSA_VERIFY | CRF_DSA_GENERATE_KEY; | ||
| 30 | if (crypto_has_alg("pkc(dh)", 0, 0)) | ||
| 31 | -- | ||
| 32 | 2.3.5 | ||
| 33 | |||
