[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAPDyKFosY=DsWcRjjio5WM+Cyy8DDnK5ixEt6bR3yimCLYR+OQ@mail.gmail.com>
Date: Fri, 16 Oct 2015 13:26:08 +0200
From: Ulf Hansson <ulf.hansson@...aro.org>
To: LABBE Corentin <montjoie.mailing@...il.com>
Cc: Herbert Xu <herbert@...dor.apana.org.au>,
LABBE Corentin <clabbe.montjoie@...il.com>,
"David S. Miller" <davem@...emloft.net>, thomas.lendacky@....com,
Geert Uytterhoeven <geert+renesas@...der.be>,
Wolfram Sang <wsa@...-dreams.de>,
Kees Cook <keescook@...omium.org>,
Maxime Ripard <maxime.ripard@...e-electrons.com>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
linux-crypto@...r.kernel.org
Subject: Re: [PATCH 1/8] crypto: hash: add zero length message hash for shax
and md5
On 15 October 2015 at 11:42, LABBE Corentin <montjoie.mailing@...il.com> wrote:
> On Wed, Oct 14, 2015 at 06:08:02PM +0800, Herbert Xu wrote:
>> On Mon, Oct 12, 2015 at 06:53:39PM +0200, LABBE Corentin wrote:
>> > Some crypto drivers cannot process empty data message and return a
>> > precalculated hash for md5/sha1/sha224/sha256.
>> >
>> > This patch add thoses precalculated hash in include/crypto.
>> >
>> > Signed-off-by: LABBE Corentin <clabbe.montjoie@...il.com>
>> > ---
>> > include/crypto/md5.h | 5 +++++
>> > include/crypto/sha.h | 20 ++++++++++++++++++++
>> > 2 files changed, 25 insertions(+)
>> >
>> > diff --git a/include/crypto/md5.h b/include/crypto/md5.h
>> > index 146af82..6496ee0 100644
>> > --- a/include/crypto/md5.h
>> > +++ b/include/crypto/md5.h
>> > @@ -13,6 +13,11 @@
>> > #define MD5_H2 0x98badcfeUL
>> > #define MD5_H3 0x10325476UL
>> >
>> > +static const u8 md5_zero_message_hash[MD5_DIGEST_SIZE] = {
>> > + 0xd4, 0x1d, 0x8c, 0xd9, 0x8f, 0x00, 0xb2, 0x04,
>> > + 0xe9, 0x80, 0x09, 0x98, 0xec, 0xf8, 0x42, 0x7e,
>> > +};
>> > +
>>
>> This potentially creates this structure in every file that includes
>> md5.h. How about putting it into md5_generic and exporting it?
>>
>
> md5_generic does not exists, do you mean md5.c ?
> I have made some try with EXPORT_SYMBOL() but without success.
> Do you have any example of how to do that ?
>
In the header file:
extern const u8 md5_zero_message_hash[MD5_DIGEST_SIZE];
In the c-file:
const u8 md5_zero_message_hash[MD5_DIGEST_SIZE] = {
0xd4, 0x1d, 0x8c, 0xd9, 0x8f, 0x00, 0xb2, 0x04,
0xe9, 0x80, 0x09, 0x98, 0xec, 0xf8, 0x42, 0x7e,
};
EXPORT_SYMBOL(md5_zero_message_hash);
Kind regards
Uffe
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists