From mboxrd@z Thu Jan 1 00:00:00 1970 From: Binoy Jayan Subject: Re: [RFC PATCH v2] crypto: Add IV generation algorithms Date: Mon, 2 Jan 2017 12:16:45 +0530 Message-ID: References: <1481618949-20086-1-git-send-email-binoy.jayan@linaro.org> <1481618949-20086-2-git-send-email-binoy.jayan@linaro.org> <20161222085509.GA2160@gondor.apana.org.au> <20161223075114.GA3580@gondor.apana.org.au> <20161230102723.GA15713@gondor.apana.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Cc: Milan Broz , Oded , Ofir , "David S. Miller" , linux-crypto@vger.kernel.org, Mark Brown , Arnd Bergmann , Linux kernel mailing list , Alasdair Kergon , Mike Snitzer , dm-devel@redhat.com, Shaohua Li , linux-raid@vger.kernel.org, Rajendra To: Herbert Xu Return-path: Received: from mail-ua0-f175.google.com ([209.85.217.175]:34394 "EHLO mail-ua0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754760AbdABGqr (ORCPT ); Mon, 2 Jan 2017 01:46:47 -0500 Received: by mail-ua0-f175.google.com with SMTP id 34so256073530uac.1 for ; Sun, 01 Jan 2017 22:46:46 -0800 (PST) In-Reply-To: <20161230102723.GA15713@gondor.apana.org.au> Sender: linux-crypto-owner@vger.kernel.org List-ID: Hi Herbert, On 30 December 2016 at 15:57, Herbert Xu wrote: > This is just a matter of structuring the key for the IV generator. > The IV generator's key in this case should be a combination of the > key to the underlying CBC plus the set of all keys for the IV > generator itself. It should then allocate the required number of > tfms as is currently done by crypt_alloc_tfms in dm-crypt. Since I used template ciphers for the iv algorithms, I use crypto_spawn_skcipher_alg and skcipher_register_instance for creating the underlying cbc algorithm. I guess you suggest to change that to make use of crypto_alloc_skcipher. Even if ciphers are allocated this way, all the encryption requests for cbc should still go through IV generators? So that should mean, create one instance of IV generator using 'crypto_alloc_skcipher' and create tfms_count instances of the generator depending on the number of keys. Thanks, Binoy