Return-Path: Received: from mail-it1-f194.google.com ([209.85.166.194]:33677 "EHLO mail-it1-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729342AbeKEWm7 (ORCPT ); Mon, 5 Nov 2018 17:42:59 -0500 Received: by mail-it1-f194.google.com with SMTP id p11-v6so7706450itf.0 for ; Mon, 05 Nov 2018 05:23:14 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <20181024032356.3388-3-vt@altlinux.org> References: <20181024032356.3388-1-vt@altlinux.org> <20181024032356.3388-3-vt@altlinux.org> From: Ard Biesheuvel Date: Mon, 5 Nov 2018 14:23:13 +0100 Message-ID: Subject: Re: [PATCH v3 2/3] crypto: streebog - register Streebog in hash info for IMA To: Vitaly Chikunov Cc: Herbert Xu , "David S. Miller" , Philippe Ombredanne , Thomas Gleixner , Kate Stewart , Greg Kroah-Hartman , "open list:HARDWARE RANDOM NUMBER GENERATOR CORE" , Linux Kernel Mailing List Content-Type: text/plain; charset="UTF-8" Sender: linux-crypto-owner@vger.kernel.org List-ID: On 24 October 2018 at 05:23, Vitaly Chikunov wrote: > Register Streebog hash function in Hash Info arrays to let IMA use > it for its purposes. > > Signed-off-by: Vitaly Chikunov > --- > crypto/hash_info.c | 4 ++++ > include/crypto/hash_info.h | 1 + > include/uapi/linux/hash_info.h | 2 ++ > 3 files changed, 7 insertions(+) > > diff --git a/crypto/hash_info.c b/crypto/hash_info.c > index 7b1e0b188ce6..b0b91eb0973a 100644 > --- a/crypto/hash_info.c > +++ b/crypto/hash_info.c > @@ -32,6 +32,8 @@ const char *const hash_algo_name[HASH_ALGO__LAST] = { > [HASH_ALGO_TGR_160] = "tgr160", > [HASH_ALGO_TGR_192] = "tgr192", > [HASH_ALGO_SM3_256] = "sm3-256", > + [HASH_ALGO_SB256] = "sb256", > + [HASH_ALGO_SB512] = "sb512", > }; > EXPORT_SYMBOL_GPL(hash_algo_name); > > @@ -54,5 +56,7 @@ const int hash_digest_size[HASH_ALGO__LAST] = { > [HASH_ALGO_TGR_160] = TGR160_DIGEST_SIZE, > [HASH_ALGO_TGR_192] = TGR192_DIGEST_SIZE, > [HASH_ALGO_SM3_256] = SM3256_DIGEST_SIZE, > + [HASH_ALGO_SB256] = STREEBOG256_DIGEST_SIZE, > + [HASH_ALGO_SB512] = STREEBOG512_DIGEST_SIZE, > }; > EXPORT_SYMBOL_GPL(hash_digest_size); > diff --git a/include/crypto/hash_info.h b/include/crypto/hash_info.h > index 56f217d41f12..91786b68dbdb 100644 > --- a/include/crypto/hash_info.h > +++ b/include/crypto/hash_info.h > @@ -15,6 +15,7 @@ > > #include > #include > +#include > > #include > > diff --git a/include/uapi/linux/hash_info.h b/include/uapi/linux/hash_info.h > index eea5d02c58de..5e8b8d952ba0 100644 > --- a/include/uapi/linux/hash_info.h > +++ b/include/uapi/linux/hash_info.h > @@ -33,6 +33,8 @@ enum hash_algo { > HASH_ALGO_TGR_160, > HASH_ALGO_TGR_192, > HASH_ALGO_SM3_256, > + HASH_ALGO_SB256, > + HASH_ALGO_SB512, Could we make this HASH_ALGO_STREEBOG_xxx please? > HASH_ALGO__LAST > }; > > -- > 2.11.0 >