Re: [Qemu-devel] [PATCH] cryptodev: setiv only when really need

2017-01-15 Thread Gonglei (Arei)
> > From: longpeng > Sent: Saturday, January 14, 2017 2:28 PM > To: Gonglei (Arei) > Cc: Wubin (H); Zhoujian (jay, Euler); qemu-devel@nongnu.org; longpeng > Subject: [PATCH] cryptodev: setiv only when really need > > ECB mode cipher doesn't need IV, if we setiv for it then qemu > crypto API would

[Qemu-devel] [PATCH] cryptodev: setiv only when really need

2017-01-13 Thread Longpeng(Mike)
ECB mode cipher doesn't need IV, if we setiv for it then qemu crypto API would report "Expected IV size 0 not **", so we should setiv only when the cipher algos really need. Signed-off-by: Longpeng(Mike) --- backends/cryptodev-builtin.c | 10 ++ 1 file changed, 6 insertions(+), 4 deletio