Re: [PATCH v2 1/1] crypto: atmel-aes: add support to the XTS mode

2016-10-20 Thread Herbert Xu
On Mon, Oct 03, 2016 at 02:33:16PM +0200, Cyrille Pitchen wrote: > This patch adds the xts(aes) algorithm, which is supported from > hardware version 0x500 and above (sama5d2x). > > Signed-off-by: Cyrille Pitchen Patch applied. Thanks. -- Email: Herbert Xu Home Page: http://gondor.apana.org.a

[PATCH v2 1/1] crypto: atmel-aes: add support to the XTS mode

2016-10-03 Thread Cyrille Pitchen
This patch adds the xts(aes) algorithm, which is supported from hardware version 0x500 and above (sama5d2x). Signed-off-by: Cyrille Pitchen --- ChangeLog: v1 -> v2: - fix typo in comment inside atmel_aes_xts_process_data(): s/reverted/reversed/ - use xts_check_key() from atmel_aes_xts_setkey()