diff options
Diffstat (limited to 'include/crypto')
-rw-r--r-- | include/crypto/skcipher.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/crypto/skcipher.h b/include/crypto/skcipher.h index d00ce90..45ae894 100644 --- a/include/crypto/skcipher.h +++ b/include/crypto/skcipher.h @@ -156,11 +156,6 @@ struct skcipher_alg { ] CRYPTO_MINALIGN_ATTR; \ struct skcipher_request *name = (void *)__##name##_desc -#define SKCIPHER_REQUEST_ON_STACK(name, tfm) \ - char __##name##_desc[sizeof(struct skcipher_request) + \ - crypto_skcipher_reqsize(tfm)] CRYPTO_MINALIGN_ATTR; \ - struct skcipher_request *name = (void *)__##name##_desc - /** * DOC: Symmetric Key Cipher API * |