Re: [PATCH v4 12/17] crypto: Add userspace report for aead type algorithms

2011-11-02 Thread Luis Henriques
Steffen Klassert secunet.com> writes: ... > + raead.blocksize = alg->cra_blocksize; > + raead.maxauthsize = aead->maxauthsize; > + raead.ivsize = aead->ivsize; > + > + NLA_PUT(skb, CRYPTOCFGA_REPORT_AEAD, > + sizeof(struct crypto_report_aead), &raead); This patch see

[PATCH v4 12/17] crypto: Add userspace report for aead type algorithms

2011-09-26 Thread Steffen Klassert
Signed-off-by: Steffen Klassert --- crypto/aead.c | 25 + include/linux/cryptouser.h |9 + 2 files changed, 34 insertions(+), 0 deletions(-) diff --git a/crypto/aead.c b/crypto/aead.c index 6729e8f..bb641bd 100644 --- a/crypto/aead.c +++ b/cryp