Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1244919
| From | LABBE Corentin <clabbe.montjoie@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 8/8] crypto: testmgr: Use the xxx_zero_message_hash from headers |
| Date | 2015-10-12 19:00 +0200 |
| Message-ID | <qiOC7-4Us-25@gated-at.bofh.it> (permalink) |
| References | <qiOC5-4Us-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Since md5/shaxxx headers have hash for zero message length, just use them.
Signed-off-by: LABBE Corentin <clabbe.montjoie@gmail.com>
---
crypto/testmgr.h | 16 ++++------------
1 file changed, 4 insertions(+), 12 deletions(-)
diff --git a/crypto/testmgr.h b/crypto/testmgr.h
index 03b2f19..9585854 100644
--- a/crypto/testmgr.h
+++ b/crypto/testmgr.h
@@ -367,8 +367,7 @@ static struct hash_testvec md4_tv_template [] = {
static struct hash_testvec md5_tv_template[] = {
{
- .digest = "\xd4\x1d\x8c\xd9\x8f\x00\xb2\x04"
- "\xe9\x80\x09\x98\xec\xf8\x42\x7e",
+ .digest = md5_zero_message_hash,
}, {
.plaintext = "a",
.psize = 1,
@@ -713,8 +712,7 @@ static struct hash_testvec sha1_tv_template[] = {
{
.plaintext = "",
.psize = 0,
- .digest = "\xda\x39\xa3\xee\x5e\x6b\x4b\x0d\x32\x55"
- "\xbf\xef\x95\x60\x18\x90\xaf\xd8\x07\x09",
+ .digest = sha1_zero_message_hash,
}, {
.plaintext = "abc",
.psize = 3,
@@ -905,10 +903,7 @@ static struct hash_testvec sha224_tv_template[] = {
{
.plaintext = "",
.psize = 0,
- .digest = "\xd1\x4a\x02\x8c\x2a\x3a\x2b\xc9"
- "\x47\x61\x02\xbb\x28\x82\x34\xc4"
- "\x15\xa2\xb0\x1f\x82\x8e\xa6\x2a"
- "\xc5\xb3\xe4\x2f",
+ .digest = sha224_zero_message_hash,
}, {
.plaintext = "abc",
.psize = 3,
@@ -1079,10 +1074,7 @@ static struct hash_testvec sha256_tv_template[] = {
{
.plaintext = "",
.psize = 0,
- .digest = "\xe3\xb0\xc4\x42\x98\xfc\x1c\x14"
- "\x9a\xfb\xf4\xc8\x99\x6f\xb9\x24"
- "\x27\xae\x41\xe4\x64\x9b\x93\x4c"
- "\xa4\x95\x99\x1b\x78\x52\xb8\x55",
+ .digest = sha256_zero_message_hash,
}, {
.plaintext = "abc",
.psize = 3,
--
2.4.9
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] crypto: add precalculated hash for zero message length LABBE Corentin <clabbe.montjoie@gmail.com> - 2015-10-12 19:00 +0200
[PATCH 8/8] crypto: testmgr: Use the xxx_zero_message_hash from headers LABBE Corentin <clabbe.montjoie@gmail.com> - 2015-10-12 19:00 +0200
Re: [PATCH 8/8] crypto: testmgr: Use the xxx_zero_message_hash from headers kbuild test robot <lkp@intel.com> - 2015-10-12 21:30 +0200
Re: [PATCH 8/8] crypto: testmgr: Use the xxx_zero_message_hash from headers Corentin LABBE <clabbe.montjoie@gmail.com> - 2015-10-12 21:40 +0200
[PATCH 3/8] crypto: ccp: Use precalculated hash from headers LABBE Corentin <clabbe.montjoie@gmail.com> - 2015-10-12 19:00 +0200
[PATCH 1/8] crypto: hash: add zero length message hash for shax and md5 LABBE Corentin <clabbe.montjoie@gmail.com> - 2015-10-12 19:00 +0200
Re: [PATCH 1/8] crypto: hash: add zero length message hash for shax and md5 Herbert Xu <herbert@gondor.apana.org.au> - 2015-10-14 12:10 +0200
Re: [PATCH 1/8] crypto: hash: add zero length message hash for shax and md5 LABBE Corentin <montjoie.mailing@gmail.com> - 2015-10-15 11:50 +0200
Re: [PATCH 1/8] crypto: hash: add zero length message hash for shax and md5 Ulf Hansson <ulf.hansson@linaro.org> - 2015-10-16 13:30 +0200
[PATCH 5/8] crypto: akcipher: fix typos in include/crypto/akcipher.h LABBE Corentin <clabbe.montjoie@gmail.com> - 2015-10-12 19:00 +0200
csiph-web