crypto: streebog - add Streebog test vectors
authorVitaly Chikunov <vt@altlinux.org>
Tue, 6 Nov 2018 21:00:03 +0000 (00:00 +0300)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 16 Nov 2018 06:11:02 +0000 (14:11 +0800)
Add testmgr and tcrypt tests and vectors for Streebog hash function
from RFC 6986 and GOST R 34.11-2012, for HMAC-Streebog vectors are
from RFC 7836 and R 50.1.113-2016.

Cc: linux-integrity@vger.kernel.org
Signed-off-by: Vitaly Chikunov <vt@altlinux.org>
Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/tcrypt.c
crypto/testmgr.c
crypto/testmgr.h

index 1026173d721a05b8964047a0202b0bcb31314f24..5fb1204749024a5984eb2bd05df0de2096ff372a 100644 (file)
@@ -76,7 +76,9 @@ static char *check[] = {
        "cast6", "arc4", "michael_mic", "deflate", "crc32c", "tea", "xtea",
        "khazad", "wp512", "wp384", "wp256", "tnepres", "xeta",  "fcrypt",
        "camellia", "seed", "salsa20", "rmd128", "rmd160", "rmd256", "rmd320",
-       "lzo", "cts", "sha3-224", "sha3-256", "sha3-384", "sha3-512", NULL
+       "lzo", "cts", "sha3-224", "sha3-256", "sha3-384", "sha3-512",
+       "streebog256", "streebog512",
+       NULL
 };
 
 static u32 block_sizes[] = { 16, 64, 256, 1024, 8192, 0 };
@@ -1914,6 +1916,14 @@ static int do_test(const char *alg, u32 type, u32 mask, int m, u32 num_mb)
                ret += tcrypt_test("sm3");
                break;
 
+       case 53:
+               ret += tcrypt_test("streebog256");
+               break;
+
+       case 54:
+               ret += tcrypt_test("streebog512");
+               break;
+
        case 100:
                ret += tcrypt_test("hmac(md5)");
                break;
@@ -1970,6 +1980,14 @@ static int do_test(const char *alg, u32 type, u32 mask, int m, u32 num_mb)
                ret += tcrypt_test("hmac(sha3-512)");
                break;
 
+       case 115:
+               ret += tcrypt_test("hmac(streebog256)");
+               break;
+
+       case 116:
+               ret += tcrypt_test("hmac(streebog512)");
+               break;
+
        case 150:
                ret += tcrypt_test("ansi_cprng");
                break;
@@ -2412,6 +2430,16 @@ static int do_test(const char *alg, u32 type, u32 mask, int m, u32 num_mb)
                test_hash_speed("sm3", sec, generic_hash_speed_template);
                if (mode > 300 && mode < 400) break;
                /* fall through */
+       case 327:
+               test_hash_speed("streebog256", sec,
+                               generic_hash_speed_template);
+               if (mode > 300 && mode < 400) break;
+               /* fall through */
+       case 328:
+               test_hash_speed("streebog512", sec,
+                               generic_hash_speed_template);
+               if (mode > 300 && mode < 400) break;
+               /* fall through */
        case 399:
                break;
 
@@ -2525,6 +2553,16 @@ static int do_test(const char *alg, u32 type, u32 mask, int m, u32 num_mb)
                                    num_mb);
                if (mode > 400 && mode < 500) break;
                /* fall through */
+       case 426:
+               test_mb_ahash_speed("streebog256", sec,
+                                   generic_hash_speed_template, num_mb);
+               if (mode > 400 && mode < 500) break;
+               /* fall through */
+       case 427:
+               test_mb_ahash_speed("streebog512", sec,
+                                   generic_hash_speed_template, num_mb);
+               if (mode > 400 && mode < 500) break;
+               /* fall through */
        case 499:
                break;
 
index 512ebf697f7edc6a7b56a385d0c927d29b5c27b5..379794a259a70745090d9c9b954e0216a38ac2d7 100644 (file)
@@ -3192,6 +3192,18 @@ static const struct alg_test_desc alg_test_descs[] = {
                .suite = {
                        .hash = __VECS(hmac_sha512_tv_template)
                }
+       }, {
+               .alg = "hmac(streebog256)",
+               .test = alg_test_hash,
+               .suite = {
+                       .hash = __VECS(hmac_streebog256_tv_template)
+               }
+       }, {
+               .alg = "hmac(streebog512)",
+               .test = alg_test_hash,
+               .suite = {
+                       .hash = __VECS(hmac_streebog512_tv_template)
+               }
        }, {
                .alg = "jitterentropy_rng",
                .fips_allowed = 1,
@@ -3504,6 +3516,18 @@ static const struct alg_test_desc alg_test_descs[] = {
                .suite = {
                        .hash = __VECS(sm3_tv_template)
                }
+       }, {
+               .alg = "streebog256",
+               .test = alg_test_hash,
+               .suite = {
+                       .hash = __VECS(streebog256_tv_template)
+               }
+       }, {
+               .alg = "streebog512",
+               .test = alg_test_hash,
+               .suite = {
+                       .hash = __VECS(streebog512_tv_template)
+               }
        }, {
                .alg = "tgr128",
                .test = alg_test_hash,
index b5b0d29761cece1830a4e5f80dc46d0a019f2db7..fc1b6c0e9ed22f239ed192c35ef08597d0c1f712 100644 (file)
@@ -2307,6 +2307,122 @@ static const struct hash_testvec crct10dif_tv_template[] = {
        }
 };
 
+/*
+ * Streebog test vectors from RFC 6986 and GOST R 34.11-2012
+ */
+static const struct hash_testvec streebog256_tv_template[] = {
+       { /* M1 */
+               .plaintext = "012345678901234567890123456789012345678901234567890123456789012",
+               .psize = 63,
+               .digest =
+                       "\x9d\x15\x1e\xef\xd8\x59\x0b\x89"
+                       "\xda\xa6\xba\x6c\xb7\x4a\xf9\x27"
+                       "\x5d\xd0\x51\x02\x6b\xb1\x49\xa4"
+                       "\x52\xfd\x84\xe5\xe5\x7b\x55\x00",
+       },
+       { /* M2 */
+               .plaintext =
+                       "\xd1\xe5\x20\xe2\xe5\xf2\xf0\xe8"
+                       "\x2c\x20\xd1\xf2\xf0\xe8\xe1\xee"
+                       "\xe6\xe8\x20\xe2\xed\xf3\xf6\xe8"
+                       "\x2c\x20\xe2\xe5\xfe\xf2\xfa\x20"
+                       "\xf1\x20\xec\xee\xf0\xff\x20\xf1"
+                       "\xf2\xf0\xe5\xeb\xe0\xec\xe8\x20"
+                       "\xed\xe0\x20\xf5\xf0\xe0\xe1\xf0"
+                       "\xfb\xff\x20\xef\xeb\xfa\xea\xfb"
+                       "\x20\xc8\xe3\xee\xf0\xe5\xe2\xfb",
+               .psize = 72,
+               .digest =
+                       "\x9d\xd2\xfe\x4e\x90\x40\x9e\x5d"
+                       "\xa8\x7f\x53\x97\x6d\x74\x05\xb0"
+                       "\xc0\xca\xc6\x28\xfc\x66\x9a\x74"
+                       "\x1d\x50\x06\x3c\x55\x7e\x8f\x50",
+       },
+};
+
+static const struct hash_testvec streebog512_tv_template[] = {
+       { /* M1 */
+               .plaintext = "012345678901234567890123456789012345678901234567890123456789012",
+               .psize = 63,
+               .digest =
+                       "\x1b\x54\xd0\x1a\x4a\xf5\xb9\xd5"
+                       "\xcc\x3d\x86\xd6\x8d\x28\x54\x62"
+                       "\xb1\x9a\xbc\x24\x75\x22\x2f\x35"
+                       "\xc0\x85\x12\x2b\xe4\xba\x1f\xfa"
+                       "\x00\xad\x30\xf8\x76\x7b\x3a\x82"
+                       "\x38\x4c\x65\x74\xf0\x24\xc3\x11"
+                       "\xe2\xa4\x81\x33\x2b\x08\xef\x7f"
+                       "\x41\x79\x78\x91\xc1\x64\x6f\x48",
+       },
+       { /* M2 */
+               .plaintext =
+                       "\xd1\xe5\x20\xe2\xe5\xf2\xf0\xe8"
+                       "\x2c\x20\xd1\xf2\xf0\xe8\xe1\xee"
+                       "\xe6\xe8\x20\xe2\xed\xf3\xf6\xe8"
+                       "\x2c\x20\xe2\xe5\xfe\xf2\xfa\x20"
+                       "\xf1\x20\xec\xee\xf0\xff\x20\xf1"
+                       "\xf2\xf0\xe5\xeb\xe0\xec\xe8\x20"
+                       "\xed\xe0\x20\xf5\xf0\xe0\xe1\xf0"
+                       "\xfb\xff\x20\xef\xeb\xfa\xea\xfb"
+                       "\x20\xc8\xe3\xee\xf0\xe5\xe2\xfb",
+               .psize = 72,
+               .digest =
+                       "\x1e\x88\xe6\x22\x26\xbf\xca\x6f"
+                       "\x99\x94\xf1\xf2\xd5\x15\x69\xe0"
+                       "\xda\xf8\x47\x5a\x3b\x0f\xe6\x1a"
+                       "\x53\x00\xee\xe4\x6d\x96\x13\x76"
+                       "\x03\x5f\xe8\x35\x49\xad\xa2\xb8"
+                       "\x62\x0f\xcd\x7c\x49\x6c\xe5\xb3"
+                       "\x3f\x0c\xb9\xdd\xdc\x2b\x64\x60"
+                       "\x14\x3b\x03\xda\xba\xc9\xfb\x28",
+       },
+};
+
+/*
+ * Two HMAC-Streebog test vectors from RFC 7836 and R 50.1.113-2016 A
+ */
+static const struct hash_testvec hmac_streebog256_tv_template[] = {
+       {
+               .key =  "\x00\x01\x02\x03\x04\x05\x06\x07"
+                       "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
+                       "\x10\x11\x12\x13\x14\x15\x16\x17"
+                       "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
+               .ksize  = 32,
+               .plaintext =
+                       "\x01\x26\xbd\xb8\x78\x00\xaf\x21"
+                       "\x43\x41\x45\x65\x63\x78\x01\x00",
+               .psize  = 16,
+               .digest =
+                       "\xa1\xaa\x5f\x7d\xe4\x02\xd7\xb3"
+                       "\xd3\x23\xf2\x99\x1c\x8d\x45\x34"
+                       "\x01\x31\x37\x01\x0a\x83\x75\x4f"
+                       "\xd0\xaf\x6d\x7c\xd4\x92\x2e\xd9",
+       },
+};
+
+static const struct hash_testvec hmac_streebog512_tv_template[] = {
+       {
+               .key =  "\x00\x01\x02\x03\x04\x05\x06\x07"
+                       "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
+                       "\x10\x11\x12\x13\x14\x15\x16\x17"
+                       "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
+               .ksize  = 32,
+               .plaintext =
+                       "\x01\x26\xbd\xb8\x78\x00\xaf\x21"
+                       "\x43\x41\x45\x65\x63\x78\x01\x00",
+               .psize  = 16,
+               .digest =
+                       "\xa5\x9b\xab\x22\xec\xae\x19\xc6"
+                       "\x5f\xbd\xe6\xe5\xf4\xe9\xf5\xd8"
+                       "\x54\x9d\x31\xf0\x37\xf9\xdf\x9b"
+                       "\x90\x55\x00\xe1\x71\x92\x3a\x77"
+                       "\x3d\x5f\x15\x30\xf2\xed\x7e\x96"
+                       "\x4c\xb2\xee\xdc\x29\xe9\xad\x2f"
+                       "\x3a\xfe\x93\xb2\x81\x4f\x79\xf5"
+                       "\x00\x0f\xfc\x03\x66\xc2\x51\xe6",
+       },
+};
+
 /* Example vectors below taken from
  * http://www.oscca.gov.cn/UpFile/20101222141857786.pdf
  *