Re: [PATCH] crypto: padlock-aes - convert to skcipher API

2019-10-18 Thread Herbert Xu
On Sat, Oct 12, 2019 at 09:17:41PM -0700, Eric Biggers wrote: > From: Eric Biggers > > Convert the VIA PadLock implementations of AES-ECB and AES-CBC from the > deprecated "blkcipher" API to the "skcipher" API. This is needed in > order for the blkcipher API to be removed. > > Signed-off-by: Er

Re: [PATCH] crypto: padlock-aes - convert to skcipher API

2019-10-14 Thread Ard Biesheuvel
On Sun, 13 Oct 2019 at 06:19, Eric Biggers wrote: > > From: Eric Biggers > > Convert the VIA PadLock implementations of AES-ECB and AES-CBC from the > deprecated "blkcipher" API to the "skcipher" API. This is needed in > order for the blkcipher API to be removed. > > Signed-off-by: Eric Biggers

Re: [PATCH] crypto: padlock-aes - convert to skcipher API

2019-10-13 Thread Eric Biggers
On Mon, Oct 14, 2019 at 04:47:27AM +, Jamie Heilman wrote: > Eric Biggers wrote: > > > I built a patched 5.3.6 with none of the crypto bits modularized > > > and you can find that dmesg and config at: > > > > > > http://audible.transient.net/~jamie/k/skcipher.config-5.3.6 > > > http://audible.

Re: [PATCH] crypto: padlock-aes - convert to skcipher API

2019-10-13 Thread Jamie Heilman
Eric Biggers wrote: > > I built a patched 5.3.6 with none of the crypto bits modularized > > and you can find that dmesg and config at: > > > > http://audible.transient.net/~jamie/k/skcipher.config-5.3.6 > > http://audible.transient.net/~jamie/k/skcipher.dmesg > > > > Great, I don't see any test

Re: [PATCH] crypto: padlock-aes - convert to skcipher API

2019-10-13 Thread Eric Biggers
On Sun, Oct 13, 2019 at 11:20:51PM +, Jamie Heilman wrote: > Eric Biggers wrote: > > From: Eric Biggers > > > > Convert the VIA PadLock implementations of AES-ECB and AES-CBC from the > > deprecated "blkcipher" API to the "skcipher" API. This is needed in > > order for the blkcipher API to b

Re: [PATCH] crypto: padlock-aes - convert to skcipher API

2019-10-13 Thread Jamie Heilman
Eric Biggers wrote: > From: Eric Biggers > > Convert the VIA PadLock implementations of AES-ECB and AES-CBC from the > deprecated "blkcipher" API to the "skcipher" API. This is needed in > order for the blkcipher API to be removed. > > Signed-off-by: Eric Biggers > --- > > This is compile-tes

[PATCH] crypto: padlock-aes - convert to skcipher API

2019-10-12 Thread Eric Biggers
From: Eric Biggers Convert the VIA PadLock implementations of AES-ECB and AES-CBC from the deprecated "blkcipher" API to the "skcipher" API. This is needed in order for the blkcipher API to be removed. Signed-off-by: Eric Biggers --- This is compile-tested only, as I don't have this hardware.