summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorTadeusz Struk <tadeusz.struk@intel.com>2016-07-14 20:39:18 -0700
committerHerbert Xu <herbert@gondor.apana.org.au>2016-07-19 12:01:47 +0800
commita6d7bfd0ff21f258913dd5e626d2bd70ab3942df (patch)
tree85410cac9f638259aaffaec10237aa25925b2dea /crypto
parentac02725812cb3a814cfe1fdc2a8a59db073e7e66 (diff)
downloadlinux-0-day-a6d7bfd0ff21f258913dd5e626d2bd70ab3942df.tar.gz
linux-0-day-a6d7bfd0ff21f258913dd5e626d2bd70ab3942df.tar.xz
crypto: rsa-pkcs1pad - fix rsa-pkcs1pad request struct
To allow for child request context the struct akcipher_request child_req needs to be at the end of the structure. Signed-off-by: Tadeusz Struk <tadeusz.struk@intel.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/rsa-pkcs1pad.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/rsa-pkcs1pad.c b/crypto/rsa-pkcs1pad.c
index 880d3db57a252..877019a6d3ea8 100644
--- a/crypto/rsa-pkcs1pad.c
+++ b/crypto/rsa-pkcs1pad.c
@@ -101,10 +101,9 @@ struct pkcs1pad_inst_ctx {
};
struct pkcs1pad_request {
- struct akcipher_request child_req;
-
struct scatterlist in_sg[2], out_sg[1];
uint8_t *in_buf, *out_buf;
+ struct akcipher_request child_req;
};
static int pkcs1pad_set_pub_key(struct crypto_akcipher *tfm, const void *key,