summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
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 880d3db57a25..877019a6d3ea 100644
--- a/crypto/rsa-pkcs1pad.c
+++ b/crypto/rsa-pkcs1pad.c
@@ -101,10 +101,9 @@ struct pkcs1pad_inst_ctx {
101}; 101};
102 102
103struct pkcs1pad_request { 103struct pkcs1pad_request {
104 struct akcipher_request child_req;
105
106 struct scatterlist in_sg[2], out_sg[1]; 104 struct scatterlist in_sg[2], out_sg[1];
107 uint8_t *in_buf, *out_buf; 105 uint8_t *in_buf, *out_buf;
106 struct akcipher_request child_req;
108}; 107};
109 108
110static int pkcs1pad_set_pub_key(struct crypto_akcipher *tfm, const void *key, 109static int pkcs1pad_set_pub_key(struct crypto_akcipher *tfm, const void *key,