Received: by 2002:a5b:505:0:0:0:0:0 with SMTP id o5csp1164913ybp; Fri, 11 Oct 2019 09:54:26 -0700 (PDT) X-Google-Smtp-Source: APXvYqzooYTVWjIZfHhL/qyFSZ5lLIevJVQeVYQ92Y2UXhUcUPql/EsFeRKYeeODtVXNbhUksJXa X-Received: by 2002:a17:906:4895:: with SMTP id v21mr14991005ejq.2.1570812866224; Fri, 11 Oct 2019 09:54:26 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1570812866; cv=none; d=google.com; s=arc-20160816; b=oQl8bqY6g/9CXycPgFexRXbnD6oi6w2f9jnni4+o6KGLYzWjgFHLMT91P5jwIlMjpK 4CWtTjZRi7KT8URflJMMICfnA1nipHKc3IYyysY60Pz2l5PHmamGQp/q+CKBqv6+j/K1 6ZGWZU995UAIzMnAUI9VI3Awy+eJqOk7MK+jjT7SgFlxjGSkstHh6ByoX9B7Dh53QpFz 9HzuVU9hP/a1ajVTPT3LMFuXGVccxdHaZ00xRF6tKKfipp3owE99meI8eztLNcW4dxsW nvpEPrn8fzTk5m7ZVhh20mv9ydZszxNUT8qE9wbGkwo5IjC3KOxB1/cQilLoaS+Ei2EI BuXw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=zs9ZblF/qwWAiWpP1jDprwgXe3fst1aS4/Vx0dpzCDc=; b=JgPmDNquV6J2jBRZwuRI/Chaxmf3Rc3di/b7PBfyvBBshBOvDHRLKJWN359GWlbEWu fLcY8Mafu37pmBocB//qhphljZiq4DvXLehRwWhxd9RqmrLU3prIP6l+J9nOOoCCrRb6 bQSdrDpprNZZ8AHAddlQe9E1FWtMe5NVyZH7peHRmbFTM80aBJQQOB7Cl4N3llVLLQj4 mADlA2f5tIwftUEyvXLtrTmY2PX2y0hbS+2KsixL1Rw8WX6TqFXht7bPcsuPODRjZKm3 BTFkBTWmINxIeETKqjylCyKYqZSthB1I+Y4pxZTqDPBO9CkRn3YbXAD9rbvuZd0DoxRb O9IQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-crypto-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-crypto-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id n26si5307977eja.273.2019.10.11.09.54.00; Fri, 11 Oct 2019 09:54:26 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-crypto-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-crypto-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-crypto-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728446AbfJKQw0 (ORCPT + 99 others); Fri, 11 Oct 2019 12:52:26 -0400 Received: from mx2.suse.de ([195.135.220.15]:35292 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1728449AbfJKQwZ (ORCPT ); Fri, 11 Oct 2019 12:52:25 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id B9340B2A9; Fri, 11 Oct 2019 16:52:14 +0000 (UTC) Received: by ds.suse.cz (Postfix, from userid 10065) id 5F244DA808; Fri, 11 Oct 2019 18:52:28 +0200 (CEST) From: David Sterba To: linux-crypto@vger.kernel.org Cc: ard.biesheuvel@linaro.org, ebiggers@google.com, David Sterba Subject: [PATCH v4 5/5] crypto: add test vectors for blake2b-512 Date: Fri, 11 Oct 2019 18:52:08 +0200 Message-Id: <18e554eeb260937de67871b81737430d9397cbac.1570812094.git.dsterba@suse.com> X-Mailer: git-send-email 2.23.0 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-crypto-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-crypto@vger.kernel.org Add test vectors for blake2b, with 512 bit digest size. This is also the default digest size for blake2b. The tested variants are with the following: - empty key - 1 byte key - first 32 bytes of the default key - default key (64 bytes) Tested plain text are sequences of bytes of lengths 0..15 and 247..255. Signed-off-by: David Sterba --- crypto/testmgr.c | 7 + crypto/testmgr.h | 2915 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 2922 insertions(+) diff --git a/crypto/testmgr.c b/crypto/testmgr.c index f0e6d5f7982a..8a879226afcc 100644 --- a/crypto/testmgr.c +++ b/crypto/testmgr.c @@ -4055,6 +4055,13 @@ static const struct alg_test_desc alg_test_descs[] = { .suite = { .hash = __VECS(blake2b_384_tv_template) } + }, { + .alg = "blake2b-512", + .test = alg_test_hash, + .fips_allowed = 0, + .suite = { + .hash = __VECS(blake2b_512_tv_template) + } }, { .alg = "cbc(aes)", .test = alg_test_skcipher, diff --git a/crypto/testmgr.h b/crypto/testmgr.h index a3297e29fb98..cad132691a9f 100644 --- a/crypto/testmgr.h +++ b/crypto/testmgr.h @@ -41327,4 +41327,2919 @@ static const struct hash_testvec blake2b_384_tv_template[] = { } }; +static const struct hash_testvec blake2b_512_tv_template[] = { + { + .plaintext = + "", + .psize = 0, + .digest = + "\x78\x6a\x02\xf7\x42\x01\x59\x03" + "\xc6\xc6\xfd\x85\x25\x52\xd2\x72" + "\x91\x2f\x47\x40\xe1\x58\x47\x61" + "\x8a\x86\xe2\x17\xf7\x1f\x54\x19" + "\xd2\x5e\x10\x31\xaf\xee\x58\x53" + "\x13\x89\x64\x44\x93\x4e\xb0\x4b" + "\x90\x3a\x68\x5b\x14\x48\xb7\x55" + "\xd5\x6f\x70\x1a\xfe\x9b\xe2\xce", + }, { + .plaintext = + "\x00", + .psize = 1, + .digest = + "\x2f\xa3\xf6\x86\xdf\x87\x69\x95" + "\x16\x7e\x7c\x2e\x5d\x74\xc4\xc7" + "\xb6\xe4\x8f\x80\x68\xfe\x0e\x44" + "\x20\x83\x44\xd4\x80\xf7\x90\x4c" + "\x36\x96\x3e\x44\x11\x5f\xe3\xeb" + "\x2a\x3a\xc8\x69\x4c\x28\xbc\xb4" + "\xf5\xa0\xf3\x27\x6f\x2e\x79\x48" + "\x7d\x82\x19\x05\x7a\x50\x6e\x4b", + }, { + .plaintext = + "\x00\x01", + .psize = 2, + .digest = + "\x1c\x08\x79\x8d\xc6\x41\xab\xa9" + "\xde\xe4\x35\xe2\x25\x19\xa4\x72" + "\x9a\x09\xb2\xbf\xe0\xff\x00\xef" + "\x2d\xcd\x8e\xd6\xf8\xa0\x7d\x15" + "\xea\xf4\xae\xe5\x2b\xbf\x18\xab" + "\x56\x08\xa6\x19\x0f\x70\xb9\x04" + "\x86\xc8\xa7\xd4\x87\x37\x10\xb1" + "\x11\x5d\x3d\xeb\xbb\x43\x27\xb5", + }, { + .plaintext = + "\x00\x01\x02", + .psize = 3, + .digest = + "\x40\xa3\x74\x72\x73\x02\xd9\xa4" + "\x76\x9c\x17\xb5\xf4\x09\xff\x32" + "\xf5\x8a\xa2\x4f\xf1\x22\xd7\x60" + "\x3e\x4f\xda\x15\x09\xe9\x19\xd4" + "\x10\x7a\x52\xc5\x75\x70\xa6\xd9" + "\x4e\x50\x96\x7a\xea\x57\x3b\x11" + "\xf8\x6f\x47\x3f\x53\x75\x65\xc6" + "\x6f\x70\x39\x83\x0a\x85\xd1\x86", + }, { + .plaintext = + "\x00\x01\x02\x03", + .psize = 4, + .digest = + "\x77\xdd\xf4\xb1\x44\x25\xeb\x3d" + "\x05\x3c\x1e\x84\xe3\x46\x9d\x92" + "\xc4\xcd\x91\x0e\xd2\x0f\x92\x03" + "\x5e\x0c\x99\xd8\xa7\xa8\x6c\xec" + "\xaf\x69\xf9\x66\x3c\x20\xa7\xaa" + "\x23\x0b\xc8\x2f\x60\xd2\x2f\xb4" + "\xa0\x0b\x09\xd3\xeb\x8f\xc6\x5e" + "\xf5\x47\xfe\x63\xc8\xd3\xdd\xce", + }, { + .plaintext = + "\x00\x01\x02\x03\x04", + .psize = 5, + .digest = + "\xcb\xaa\x0b\xa7\xd4\x82\xb1\xf3" + "\x01\x10\x9a\xe4\x10\x51\x99\x1a" + "\x32\x89\xbc\x11\x98\x00\x5a\xf2" + "\x26\xc5\xe4\xf1\x03\xb6\x65\x79" + "\xf4\x61\x36\x10\x44\xc8\xba\x34" + "\x39\xff\x12\xc5\x15\xfb\x29\xc5" + "\x21\x61\xb7\xeb\x9c\x28\x37\xb7" + "\x6a\x5d\xc3\x3f\x7c\xb2\xe2\xe8", + }, { + .plaintext = + "\x00\x01\x02\x03\x04\x05", + .psize = 6, + .digest = + "\xf9\x5d\x45\xcf\x69\xaf\x5c\x20" + "\x23\xbd\xb5\x05\x82\x1e\x62\xe8" + "\x5d\x7c\xae\xdf\x7b\xed\xa1\x2c" + "\x02\x48\x77\x5b\x0c\x88\x20\x5e" + "\xeb\x35\xaf\x3a\x90\x81\x6f\x66" + "\x08\xce\x7d\xd4\x4e\xc2\x8d\xb1" + "\x14\x06\x14\xe1\xdd\xeb\xf3\xaa" + "\x9c\xd1\x84\x3e\x0f\xad\x2c\x36", + }, { + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06", + .psize = 7, + .digest = + "\x8f\x94\x5b\xa7\x00\xf2\x53\x0e" + "\x5c\x2a\x7d\xf7\xd5\xdc\xe0\xf8" + "\x3f\x9e\xfc\x78\xc0\x73\xfe\x71" + "\xae\x1f\x88\x20\x4a\x4f\xd1\xcf" + "\x70\xa0\x73\xf5\xd1\xf9\x42\xed" + "\x62\x3a\xa1\x6e\x90\xa8\x71\x24" + "\x6c\x90\xc4\x5b\x62\x1b\x34\x01" + "\xa5\xdd\xbd\x9d\xf6\x26\x41\x65", + }, { + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07", + .psize = 8, + .digest = + "\xe9\x98\xe0\xdc\x03\xec\x30\xeb" + "\x99\xbb\x6b\xfa\xaf\x66\x18\xac" + "\xc6\x20\x32\x0d\x72\x20\xb3\xaf" + "\x2b\x23\xd1\x12\xd8\xe9\xcb\x12" + "\x62\xf3\xc0\xd6\x0d\x18\x3b\x1e" + "\xe7\xf0\x96\xd1\x2d\xae\x42\xc9" + "\x58\x41\x86\x00\x21\x4d\x04\xf5" + "\xed\x6f\x5e\x71\x8b\xe3\x55\x66", + }, { + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08", + .psize = 9, + .digest = + "\x6a\x9a\x09\x0c\x61\xb3\x41\x0a" + "\xed\xe7\xec\x91\x38\x14\x6c\xeb" + "\x2c\x69\x66\x2f\x46\x0c\x3d\xa5" + "\x3c\x65\x15\xc1\xeb\x31\xf4\x1c" + "\xa3\xd2\x80\xe5\x67\x88\x2f\x95" + "\xcf\x66\x4a\x94\x14\x7d\x78\xf4" + "\x2c\xfc\x71\x4a\x40\xd2\x2e\xf1" + "\x94\x70\xe0\x53\x49\x35\x08\xa2", + }, { + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09", + .psize = 10, + .digest = + "\x29\x10\x25\x11\xd7\x49\xdb\x3c" + "\xc9\xb4\xe3\x35\xfa\x1f\x5e\x8f" + "\xac\xa8\x42\x1d\x55\x8f\x6a\x3f" + "\x33\x21\xd5\x0d\x04\x4a\x24\x8b" + "\xa5\x95\xcf\xc3\xef\xd3\xd2\xad" + "\xc9\x73\x34\xda\x73\x24\x13\xf5" + "\xcb\xf4\x75\x1c\x36\x2b\xa1\xd5" + "\x38\x62\xac\x1e\x8d\xab\xee\xe8", + }, { + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09\x0a", + .psize = 11, + .digest = + "\xc9\x7a\x47\x79\xd4\x7e\x6f\x77" + "\x72\x9b\x59\x17\xd0\x13\x8a\xbb" + "\x35\x98\x0a\xb6\x41\xbd\x73\xa8" + "\x85\x9e\xb1\xac\x98\xc0\x53\x62" + "\xed\x7d\x60\x8f\x2e\x95\x87\xd6" + "\xba\x9e\x27\x1d\x34\x31\x25\xd4" + "\x0d\x93\x3a\x8e\xd0\x4e\xc1\xfe" + "\x75\xec\x40\x7c\x7a\x53\xc3\x4e", + }, { + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09\x0a\x0b", + .psize = 12, + .digest = + "\x10\xf0\xdc\x91\xb9\xf8\x45\xfb" + "\x95\xfa\xd6\x86\x0e\x6c\xe1\xad" + "\xfa\x00\x2c\x7f\xc3\x27\x11\x6d" + "\x44\xd0\x47\xcd\x7d\x58\x70\xd7" + "\x72\xbb\x12\xb5\xfa\xc0\x0e\x02" + "\xb0\x8a\xc2\xa0\x17\x4d\x04\x46" + "\xc3\x6a\xb3\x5f\x14\xca\x31\x89" + "\x4c\xd6\x1c\x78\xc8\x49\xb4\x8a", + }, { + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09\x0a\x0b\x0c", + .psize = 13, + .digest = + "\xde\xa9\x10\x1c\xac\x62\xb8\xf6" + "\xa3\xc6\x50\xf9\x0e\xea\x5b\xfa" + "\xe2\x65\x3a\x4e\xaf\xd6\x3a\x6d" + "\x1f\x0f\x13\x2d\xb9\xe4\xf2\xb1" + "\xb6\x62\x43\x2e\xc8\x5b\x17\xbc" + "\xac\x41\xe7\x75\x63\x78\x81\xf6" + "\xaa\xb3\x8d\xd6\x6d\xcb\xd0\x80" + "\xf0\x99\x0a\x7a\x6e\x98\x54\xfe", + }, { + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09\x0a\x0b\x0c\x0d", + .psize = 14, + .digest = + "\x44\x1f\xfa\xa0\x8c\xd7\x9d\xff" + "\x4a\xfc\x9b\x9e\x5b\x56\x20\xee" + "\xc0\x86\x73\x0c\x25\xf6\x61\xb1" + "\xd6\xfb\xfb\xd1\xce\xc3\x14\x8d" + "\xd7\x22\x58\xc6\x56\x41\xf2\xfc" + "\xa5\xeb\x15\x5f\xad\xbc\xab\xb1" + "\x3c\x6e\x21\xdc\x11\xfa\xf7\x2c" + "\x2a\x28\x1b\x7d\x56\x14\x5f\x19", + }, { + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09\x0a\x0b\x0c\x0d\x0e", + .psize = 15, + .digest = + "\x44\x4b\x24\x0f\xe3\xed\x86\xd0" + "\xe2\xef\x4c\xe7\xd8\x51\xed\xde" + "\x22\x15\x55\x82\xaa\x09\x14\x79" + "\x7b\x72\x6c\xd0\x58\xb6\xf4\x59" + "\x32\xe0\xe1\x29\x51\x68\x76\x52" + "\x7b\x1d\xd8\x8f\xc6\x6d\x71\x19" + "\xf4\xab\x3b\xed\x93\xa6\x1a\x0e" + "\x2d\x2d\x2a\xea\xc3\x36\xd9\x58", + }, { + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6", + .psize = 247, + .digest = + "\x3e\x7e\x57\x00\x74\x33\x72\x75" + "\xef\xb5\x13\x15\x58\x80\x34\xc3" + "\xcf\x0d\xdd\xca\x20\xb4\x61\x2e" + "\x0b\xd5\xb8\x81\xe7\xe5\x47\x6d" + "\x31\x9c\xe4\xfe\x9f\x19\x18\x6e" + "\x4c\x08\x26\xf4\x4f\x13\x1e\xb0" + "\x48\xe6\x5b\xe2\x42\xb1\x17\x2c" + "\x63\xba\xdb\x12\x3a\xb0\xcb\xe8", + }, { + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7", + .psize = 248, + .digest = + "\xd3\x2e\x9e\xc0\x2d\x38\xd4\xe1" + "\xb8\x24\x9d\xf8\xdc\xb0\x0c\x5b" + "\x9c\x68\xeb\x89\x22\x67\x2e\x35" + "\x05\x39\x3b\x6a\x21\x0b\xa5\x6f" + "\x94\x96\xe5\xee\x04\x90\xef\x38" + "\x7c\x3c\xde\xc0\x61\xf0\x6b\xc0" + "\x38\x2d\x93\x04\xca\xfb\xb8\xe0" + "\xcd\x33\xd5\x70\x29\xe6\x2d\xf2", + }, { + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8", + .psize = 249, + .digest = + "\x8c\x15\x12\x46\x60\x89\xf0\x5b" + "\x37\x75\xc2\x62\xb6\x2d\x22\xb8" + "\x38\x54\xa8\x32\x18\x13\x0b\x4e" + "\xc9\x1b\x3c\xcb\xd2\x93\xd2\xa5" + "\x43\x02\xce\xca\xab\x9b\x10\x0c" + "\x68\xd1\xe6\xdd\xc8\xf0\x7c\xdd" + "\xbd\xfe\x6f\xda\xaa\xf0\x99\xcc" + "\x09\xd6\xb7\x25\x87\x9c\x63\x69", + }, { + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9", + .psize = 250, + .digest = + "\x91\xa7\xf6\x1c\x97\xc2\x91\x1e" + "\x4c\x81\x2e\xf7\x1d\x78\x0a\xd8" + "\xfa\x78\x87\x94\x56\x1d\x08\x30" + "\x3f\xd1\xc1\xcb\x60\x8a\x46\xa1" + "\x25\x63\x08\x6e\xc5\xb3\x9d\x47" + "\x1a\xed\x94\xfb\x0f\x6c\x67\x8a" + "\x43\xb8\x79\x29\x32\xf9\x02\x8d" + "\x77\x2a\x22\x76\x8e\xa2\x3a\x9b", + }, { + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9\xfa", + .psize = 251, + .digest = + "\x4f\x6b\xb2\x22\xa3\x95\xe8\xb1" + "\x8f\x6b\xa1\x55\x47\x7a\xed\x3f" + "\x07\x29\xac\x9e\x83\xe1\x6d\x31" + "\xa2\xa8\xbc\x65\x54\x22\xb8\x37" + "\xc8\x91\xc6\x19\x9e\x6f\x0d\x75" + "\x79\x9e\x3b\x69\x15\x25\xc5\x81" + "\x95\x35\x17\xf2\x52\xc4\xb9\xe3" + "\xa2\x7a\x28\xfb\xaf\x49\x64\x4c", + }, { + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9\xfa\xfb", + .psize = 252, + .digest = + "\x5d\x06\xc0\x7e\x7a\x64\x6c\x41" + "\x3a\x50\x1c\x3f\x4b\xb2\xfc\x38" + "\x12\x7d\xe7\x50\x9b\x70\x77\xc4" + "\xd9\xb5\x61\x32\x01\xc1\xaa\x02" + "\xfd\x5f\x79\xd2\x74\x59\x15\xdd" + "\x57\xfb\xcb\x4c\xe0\x86\x95\xf6" + "\xef\xc0\xcb\x3d\x2d\x33\x0e\x19" + "\xb4\xb0\xe6\x00\x4e\xa6\x47\x1e", + }, { + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9\xfa\xfb\xfc", + .psize = 253, + .digest = + "\xb9\x67\x56\xe5\x79\x09\x96\x8f" + "\x14\xb7\x96\xa5\xd3\x0f\x4c\x9d" + "\x67\x14\x72\xcf\x82\xc8\xcf\xb2" + "\xca\xca\x7a\xc7\xa4\x4c\xa0\xa1" + "\x4c\x98\x42\xd0\x0c\x82\xe3\x37" + "\x50\x2c\x94\xd5\x96\x0a\xca\x4c" + "\x49\x2e\xa7\xb0\xdf\x91\x9d\xdf" + "\x1a\xad\xa2\xa2\x75\xbb\x10\xd4", + }, { + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9\xfa\xfb\xfc\xfd", + .psize = 254, + .digest = + "\xff\x0a\x01\x5e\x98\xdb\x9c\x99" + "\xf0\x39\x77\x71\x0a\xac\x3e\x65" + "\x8c\x0d\x89\x6f\x6d\x71\xd6\x18" + "\xba\x79\xdc\x6c\xf7\x2a\xc7\x5b" + "\x7c\x03\x8e\xb6\x86\x2d\xed\xe4" + "\x54\x3e\x14\x54\x13\xa6\x36\x8d" + "\x69\xf5\x72\x2c\x82\x7b\xa3\xef" + "\x25\xb6\xae\x64\x40\xd3\x92\x76", + }, { + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9\xfa\xfb\xfc\xfd\xfe", + .psize = 255, + .digest = + "\x5b\x21\xc5\xfd\x88\x68\x36\x76" + "\x12\x47\x4f\xa2\xe7\x0e\x9c\xfa" + "\x22\x01\xff\xee\xe8\xfa\xfa\xb5" + "\x79\x7a\xd5\x8f\xef\xa1\x7c\x9b" + "\x5b\x10\x7d\xa4\xa3\xdb\x63\x20" + "\xba\xaf\x2c\x86\x17\xd5\xa5\x1d" + "\xf9\x14\xae\x88\xda\x38\x67\xc2" + "\xd4\x1f\x0c\xc1\x4f\xa6\x79\x28", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "", + .psize = 0, + .digest = + "\x79\x46\xca\x27\x4f\x28\x63\xb8" + "\x3e\x13\x75\xde\x37\x51\x19\x1c" + "\x33\xb1\x1d\x9b\x82\xbb\x91\xc5" + "\x00\x66\x92\xf6\x45\x3d\x99\x67" + "\xd5\x35\xe1\xc0\x03\xba\x2e\x6d" + "\x87\xae\x70\xcd\x9d\xdb\xbe\xdc" + "\x91\xc0\xe1\x74\xeb\x4e\xa9\x72" + "\x59\x93\xf4\x97\x62\x6e\xa2\xe3", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\x00", + .psize = 1, + .digest = + "\xd2\x11\x31\x29\x3f\xea\xca\x72" + "\x21\xe4\x06\x65\x05\x2a\xd1\x02" + "\xc0\x8d\x7b\xf1\x09\x3c\xef\x88" + "\xe1\x68\x0c\xf1\x3b\xa4\xe3\x03" + "\xed\xa0\xe3\x60\x58\xa0\xdb\x52" + "\x8a\x66\x43\x09\x60\x1a\xbb\x67" + "\xc5\x84\x31\x40\xfa\xde\xc1\xd0" + "\xff\x3f\x4a\x69\xd9\x92\x26\x86", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\x00\x01", + .psize = 2, + .digest = + "\xde\x4d\x0b\x11\x7f\xf3\x14\xcd" + "\xac\x52\xf1\x6d\x3a\xf2\x40\x97" + "\x33\xbf\xaa\x25\xab\xc5\x4c\x18" + "\x9d\x22\x02\xd2\xfa\xc5\x0d\x10" + "\x47\xe2\x15\xc2\x23\xc5\x97\xa8" + "\x55\xf3\x0e\x70\x92\xab\x36\x41" + "\x0b\x9f\x6d\xb2\xa4\x43\xf7\xb9" + "\xdc\x5f\xf6\xe3\x6a\xd9\xa4\x8d", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\x00\x01\x02", + .psize = 3, + .digest = + "\xa3\xb4\x69\x36\x0e\x0a\x30\x01" + "\xaa\xc6\x68\xb8\x11\xc7\xfd\x59" + "\x3d\x4c\xa9\xf9\x3b\xcb\x68\x29" + "\xc8\xab\x10\x55\xfc\xde\x77\xc3" + "\xb2\xcb\x27\x02\x6a\x17\xc3\x7b" + "\xc9\xec\x56\x57\x76\xa5\x46\x0e" + "\xec\x46\xc6\xde\x85\xbf\x80\x6b" + "\x14\x9d\xbe\xfb\x9e\x87\x07\x44", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\x00\x01\x02\x03", + .psize = 4, + .digest = + "\x08\x2e\xa8\xca\xa8\xf2\xc3\xbe" + "\x46\x84\x77\xa1\x4f\x65\x12\xa1" + "\x2b\x37\x40\x9b\x2d\x2f\xbf\xd7" + "\x63\xce\x2e\x16\x5c\x75\x15\xd7" + "\x7a\xdd\xbb\x52\x68\x2f\x84\x17" + "\xfc\x94\xba\x39\x66\xcd\x3d\x37" + "\x78\xbb\xc5\x88\x0a\x66\x6b\x4f" + "\x7d\x6c\xae\x69\x71\x28\xde\x38", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\x00\x01\x02\x03\x04", + .psize = 5, + .digest = + "\x0a\x6c\x25\x45\x17\xaa\xe1\x90" + "\xd1\xe6\x05\x8e\x4f\xa7\x56\x93" + "\x49\xc7\x92\xef\x13\x7f\xbd\xcc" + "\x8a\x8d\xef\x26\x1c\x5b\xff\x3b" + "\xeb\x45\x38\xd8\xcb\x58\x68\x54" + "\x8c\xb8\x3e\x56\x83\xc4\xd4\xb9" + "\xb5\x56\x5d\xf4\xd9\x81\x89\xb1" + "\x42\x29\x6c\x01\x6b\x9a\xc6\xd2", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\x00\x01\x02\x03\x04\x05", + .psize = 6, + .digest = + "\x58\x2e\xb8\xed\x02\xfb\xfb\x18" + "\xb8\xb6\xc6\xf6\xc8\xc4\xfc\xf6" + "\xdf\x22\x35\x7c\xa2\x5c\x5c\x63" + "\xdc\xe2\x7f\x40\x74\x95\x12\xb3" + "\x1d\x73\xcb\xf7\xae\x72\xc4\x70" + "\x84\xce\x4b\x3f\x7f\x8e\xcf\x16" + "\x7a\x1e\x2b\x16\xd5\x07\x3d\xa7" + "\xbd\xdc\xad\x3f\x43\xc1\x49\x19", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06", + .psize = 7, + .digest = + "\x30\x58\x3a\x82\x89\xed\xf3\x7c" + "\xc1\x90\x62\x82\xfd\xf8\x5f\x59" + "\x66\x57\x48\x41\x7c\x46\x9c\xe4" + "\x07\xc6\x5e\x83\xbb\xde\xe5\xc1" + "\x7a\x33\x20\xcf\xe8\xfb\x14\xf4" + "\x85\x32\x15\x9a\xe0\x73\x33\xbd" + "\x05\xab\xde\xc3\xe9\x32\x32\xc2" + "\x5f\x74\x7f\x14\x17\xdc\x7f\x44", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07", + .psize = 8, + .digest = + "\x3b\xc9\x85\x70\xa1\x8c\x50\x46" + "\xfc\xf8\x7f\xf8\x80\xf2\x75\xd6" + "\xdd\xad\x56\x52\xbc\x60\xc5\xb8" + "\x89\x23\x31\xd6\x5f\x17\xab\x79" + "\xd7\x5a\xa1\xad\xe2\xd8\xea\xd3" + "\x6a\x26\xba\x6f\x60\xf7\x6f\x2e" + "\x44\x59\xde\xec\x8b\xa5\xb7\x8d" + "\xe3\x1b\xe2\xcf\x7e\xfe\xc5\x13", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08", + .psize = 9, + .digest = + "\xbe\x7c\xa0\xa0\x1f\x1b\xf3\x0e" + "\x97\xe8\xbd\x7e\xd0\xc5\xac\xd4" + "\x45\xdf\x96\x0e\xcd\x74\x6a\x42" + "\x7c\xa1\xfc\x35\xe9\xff\x19\x51" + "\x41\x93\xf0\x5e\x0a\xcd\xc9\xf5" + "\x27\xed\x12\x35\x39\xcb\xc2\xc6" + "\x74\x80\x40\x8f\xf9\xfd\x20\x53" + "\x95\x2d\xf6\x28\x1f\xf6\x10\xcc", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09", + .psize = 10, + .digest = + "\x2e\x4a\x95\xe0\x41\x4f\x0b\xec" + "\x28\x3c\x4d\x3e\x9e\x32\xf0\x3a" + "\x46\x46\xf7\x5d\xa0\xec\xe9\xa9" + "\x07\xf7\x53\xd8\x0d\x78\x2f\xf4" + "\x1f\x29\x58\x99\xcf\x0b\x10\xe7" + "\xbb\x94\x43\x85\xc4\x7e\xd9\x6d" + "\x15\xc5\x3b\x30\x05\x51\xbe\x90" + "\x68\xdd\x61\xd0\xa0\x2a\xb7\xb6", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09\x0a", + .psize = 11, + .digest = + "\xc6\x32\x55\xc5\xab\x7c\xfe\x67" + "\x32\x75\x98\xd4\xa8\x62\xc7\x1c" + "\x2c\x10\x52\x37\x65\x10\xe6\x28" + "\x1d\xb7\xe7\x50\xbf\x1d\x68\x3d" + "\xc2\xf3\x16\x90\x93\xa7\x97\xbe" + "\x70\x71\xf7\xd7\x1c\x89\x34\x8c" + "\x88\x27\x71\x02\x6a\x88\xf6\x60" + "\x06\xee\xb2\x2f\x4b\x99\xcc\xb1", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09\x0a\x0b", + .psize = 12, + .digest = + "\x2d\x23\x1f\x91\x9e\x0e\xb8\x98" + "\x63\x29\x7b\x65\x87\x61\x60\x21" + "\x76\xe3\x7e\x56\x50\x2d\x75\x0b" + "\x58\x8d\x02\xdb\xd2\x6a\x77\x0e" + "\xaa\x99\xe2\x8a\x1d\x8f\xb4\x1c" + "\x61\x66\x3d\xf7\x91\xff\x89\x5f" + "\x8d\x4d\xc3\xf9\xe5\x25\x64\x23" + "\xaa\x12\x78\x04\x1d\x20\x17\x6d", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09\x0a\x0b\x0c", + .psize = 13, + .digest = + "\xa0\x6d\xde\x5f\x34\xe7\x93\x0f" + "\x69\x4b\x4e\x51\x12\x41\x0f\x10" + "\x81\xe5\xdb\x29\x5c\xa2\xbc\x43" + "\xec\xea\x7b\xb6\xeb\x78\x99\x20" + "\xb0\xe2\xdc\xfd\x74\x0f\xb1\x8a" + "\x35\xad\x75\x81\x35\x6b\x52\xc4" + "\x94\xf4\xab\x43\xad\x94\xda\xbc" + "\x6d\x6b\x9b\x8a\xa6\x98\x8a\x46", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09\x0a\x0b\x0c\x0d", + .psize = 14, + .digest = + "\x7a\x52\xcb\xc1\x2d\x81\x9e\x1d" + "\x79\x33\xf1\x2d\x75\x2f\x1c\xc7" + "\xe3\xfd\xc9\x61\xe5\x6e\x79\x36" + "\x27\xd2\xe4\xb1\xe8\x75\x33\x5c" + "\xcb\x00\x59\xc7\x90\x16\x63\xaa" + "\xa3\x06\xbe\xa2\x34\x94\x45\x29" + "\x98\xfb\x47\x50\x86\xb4\x1e\x03" + "\x94\x10\xbe\x6b\x59\x8b\x74\x87", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09\x0a\x0b\x0c\x0d\x0e", + .psize = 15, + .digest = + "\xb3\xac\xd9\xa6\xbc\x00\x92\x43" + "\x12\x3e\xbe\xc8\xa2\x1a\x04\xd9" + "\x5a\xf2\x61\x4b\x2b\x60\xdc\x6f" + "\x23\xa1\x52\x1e\xf3\xa0\xc6\xf9" + "\xda\xb2\xdd\x47\x43\x12\x67\xe0" + "\x62\x0a\xba\xf1\x90\x67\xcc\x45" + "\x01\x9c\x06\x99\xc4\x45\x98\xf2" + "\x6a\xf0\x45\x99\x5b\xfb\x99\x10", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6", + .psize = 247, + .digest = + "\xc2\x96\x2c\x6b\x84\xff\xee\xea" + "\x9b\xb8\x55\x2d\x6b\xa5\xd5\xe5" + "\xbd\xb1\x54\xb6\x1e\xfb\x63\x16" + "\x6e\x22\x04\xf0\x82\x7a\xc6\x99" + "\xf7\x4c\xff\x93\x71\x57\x64\xd0" + "\x08\x60\x39\x98\xb8\xd2\x2b\x4e" + "\x81\x8d\xe4\x8f\xb2\x1e\x8f\x99" + "\x98\xf1\x02\x9b\x4c\x7c\x97\x1a", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7", + .psize = 248, + .digest = + "\xef\x0d\xd1\x47\x50\x02\xc7\xac" + "\x3f\xac\x97\xb0\xc2\xaf\x46\xd3" + "\x81\x1d\x3f\xe5\xc3\xc3\x8b\x85" + "\x15\x6d\xc4\xe8\xfe\x67\x83\x33" + "\x1b\x72\xad\x18\x4d\x32\x5f\xd1" + "\x53\xbd\x42\xa2\xbe\x16\x6d\x98" + "\xf5\xc6\xb5\xcc\x4d\xb6\xd7\xcc" + "\x0b\x13\x74\xc2\x6b\x05\xae\xea", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8", + .psize = 249, + .digest = + "\x75\x6f\x3d\x97\x7e\x80\x8f\x35" + "\x9c\xdd\xbc\xfc\x31\xe9\xac\x9d" + "\x34\xff\xd1\x46\x71\xb2\x85\x7a" + "\xc8\x33\x7c\xbd\x3c\x43\xfb\x0d" + "\xe5\x18\x02\x53\x10\xd9\xe4\x7b" + "\xf5\x88\x83\x8e\x6d\x32\xa5\x43" + "\x6f\xeb\x84\x01\x80\x17\xeb\x06" + "\x42\xe9\xb9\x59\x1f\xe9\x33\x81", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9", + .psize = 250, + .digest = + "\xfd\xc4\x6d\x9d\x15\x7b\x19\x2d" + "\x35\x03\x08\x5d\xe4\x87\x3c\x6c" + "\x6e\x17\x4b\x68\x79\x6b\x3a\x9b" + "\x9a\xdc\x19\x7f\x30\x43\x20\xee" + "\x3f\x56\x03\x58\x76\x21\x8d\x5b" + "\xe1\x28\xd2\x49\x96\xa3\x77\xf1" + "\x4e\xe0\x6f\xac\x37\xfb\x1c\x92" + "\x72\x11\x0b\x68\x7b\xd5\x63\x6e", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9\xfa", + .psize = 251, + .digest = + "\x1a\xad\x52\xfc\x97\x81\x38\x66" + "\x32\x4a\x44\x5e\xe4\x5f\xee\xd2" + "\x9f\xd9\x22\xa1\xa8\x6e\xa4\x97" + "\x62\x95\x0e\xce\xf0\x61\x47\xa1" + "\x59\xf3\x72\xcd\x35\x52\x0b\x71" + "\x1d\xe0\x5b\xa9\x5f\x59\xa8\xa1" + "\xbd\x49\x2d\x22\xee\x70\x72\xb4" + "\xc3\x7a\xe2\x47\x41\xc3\x6c\x1c", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9\xfa\xfb", + .psize = 252, + .digest = + "\x2c\xdc\x0b\x4a\xa2\x42\x08\x02" + "\x60\x04\xbd\x6b\x3e\x59\x31\x09" + "\xd4\x49\x2a\x65\x3d\xc8\xc4\x58" + "\xfb\x1c\x06\xe8\xb3\x36\x59\x2b" + "\x3a\xad\xdd\x43\x71\xe7\x32\x1e" + "\xc4\x4a\x8b\xbc\xa4\x47\xf6\x98" + "\x04\xb1\xfd\xcc\x39\xaa\xb2\x07" + "\xf8\xc9\xe4\x04\x8c\xed\xdd\x98", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9\xfa\xfb\xfc", + .psize = 253, + .digest = + "\x64\x8e\x1c\xce\xca\xf3\x2a\x48" + "\xfb\xd5\x9d\x77\x7f\x36\xf4\x5f" + "\x4d\x4a\x6a\xcf\xe1\x8c\x42\x4a" + "\x15\x62\xa4\x99\xf0\xeb\x0c\xd6" + "\xbb\xb0\xdc\xf1\xbe\x3e\x66\xb1" + "\xc3\xd3\x87\x91\x8d\x4e\xdc\x7f" + "\x24\x18\xb6\xcb\x4a\x37\x73\x81" + "\xb5\x69\x28\xf8\xb4\x7a\xd7\xcb", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9\xfa\xfb\xfc\xfd", + .psize = 254, + .digest = + "\x6c\x41\xca\xd9\x73\x15\x35\x5e" + "\xa8\xb3\x3f\x88\xb1\x1a\x3f\x15" + "\xb3\xa0\x21\x75\xf4\x26\x9b\x11" + "\xc3\x49\x38\x97\x9d\xd6\xae\x24" + "\xb4\x64\xcc\x98\xa8\xc1\xa8\xfc" + "\xcf\xea\x08\x15\x6c\x53\x59\x8d" + "\xdc\xd3\xe4\x17\xe0\x46\x47\xe3" + "\x89\x03\x8a\x9b\x30\xc0\x13\xb1", + }, { + .ksize = 1, + .key = + "\x42", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9\xfa\xfb\xfc\xfd\xfe", + .psize = 255, + .digest = + "\x50\x64\xed\x22\x38\x9c\xa3\xf2" + "\xb6\x3e\x6f\x20\x6f\xb3\x85\x5d" + "\xeb\x43\xda\x78\x7a\x5d\x3e\xba" + "\x8e\x35\x62\x43\x88\x06\xb9\x29" + "\x6f\xc0\xf4\xfe\x09\xa6\xbc\x7c" + "\xcc\xa9\xfe\xd1\x2b\x6f\xdd\x73" + "\xfb\x75\x5a\x07\x29\x31\x6a\x44" + "\x14\xd0\x15\x2b\xfa\x65\x5f\x42", + }, { + .ksize = 32, + .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", + .plaintext = + "", + .psize = 0, + .digest = + "\x84\xbf\xa6\x9f\x0d\x90\xdf\x7d" + "\xb2\xa3\xee\x02\x60\x42\x98\x8b" + "\x5b\xd9\xca\xa2\x32\x0a\xf1\xf3" + "\x71\x82\x3d\xd2\x83\x51\x20\x2f" + "\x8e\x62\x77\xc4\x0c\x05\x07\x11" + "\xc8\xdd\x4e\x2c\x1a\xc3\x0c\x34" + "\xc9\xae\xd0\xbd\xdd\x46\x8b\x03" + "\x12\x87\xfe\x87\x26\x75\xe0\xcc", + }, { + .ksize = 32, + .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", + .plaintext = + "\x00", + .psize = 1, + .digest = + "\xf4\xc3\x55\xc6\x1f\xb4\xa9\x61" + "\x1c\xf0\x8a\xe5\x3a\x06\xf5\x7e" + "\x25\xc6\xe9\xc3\xbb\x7a\x88\x18" + "\xb9\x53\x9d\xc4\xb4\xe6\xd7\x05" + "\x4b\x62\x99\x9b\xbe\xf5\x21\x2d" + "\xea\x91\x03\xa2\xc4\xe4\x4d\x65" + "\x04\x65\x9d\x60\xb5\x04\x55\x3a" + "\xd1\x17\x3c\x02\xc4\x55\x3a\xfd", + }, { + .ksize = 32, + .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", + .plaintext = + "\x00\x01", + .psize = 2, + .digest = + "\xce\xf2\x79\x44\xf5\x5d\x55\xd2" + "\xcd\xa3\xab\x14\x03\xb1\x8b\x8b" + "\x02\x84\x2e\x88\x9a\x44\xdd\xb0" + "\x3e\x7a\x46\x4e\x3d\x4b\x11\x9c" + "\xcf\x98\xf6\x30\xd0\x78\xbd\x7f" + "\x70\xa3\xad\x6f\xeb\x4e\xed\x9b" + "\xec\xf7\xdb\x6e\xf5\xfc\x57\x3f" + "\x7a\x83\xbc\xd6\x51\x78\x53\x4f", + }, { + .ksize = 32, + .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", + .plaintext = + "\x00\x01\x02", + .psize = 3, + .digest = + "\x23\x46\xd2\xf7\x0d\x77\x46\x41" + "\xa3\x30\xc2\xa0\x50\xba\xe0\x00" + "\x98\x5f\xb9\x0a\x66\x19\xc5\x51" + "\x2d\x60\x9c\x05\x31\xb7\x69\x71" + "\x0d\x92\xb8\x0c\xf9\xa5\x44\xcb" + "\xde\xe6\xd2\xab\x51\xfc\x8b\x6c" + "\xc1\x83\x92\x45\xfb\x63\xe0\x74" + "\x40\x9d\xec\x7c\x0d\xc3\x30\xc9", + }, { + .ksize = 32, + .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", + .plaintext = + "\x00\x01\x02\x03", + .psize = 4, + .digest = + "\x6b\xe0\xd6\x0f\xde\x10\xe2\x0e" + "\x5e\xbc\xf4\x6c\x70\x4f\x86\x63" + "\x3e\xc8\x28\x41\x0c\x94\x6c\xe5" + "\xc7\x74\x20\x0a\x34\xb6\xaa\xe3" + "\xad\xde\x24\x72\xb9\x57\x8a\x3c" + "\x19\x29\xc1\x75\x46\xfd\x37\x2b" + "\xea\x89\xba\x46\x49\x69\xd5\xa8" + "\x3a\xce\x99\xba\xe3\xfa\xe5\x15", + }, { + .ksize = 32, + .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", + .plaintext = + "\x00\x01\x02\x03\x04", + .psize = 5, + .digest = + "\x86\xd9\x36\x47\xa5\xa8\xb8\xf5" + "\xac\x59\x31\x7a\x37\xa0\x5f\xf2" + "\x9f\xd4\xb1\xd1\x35\x74\x75\x19" + "\xc8\x09\x83\x03\x7f\x47\x41\xde" + "\xa4\x8f\x89\xbf\xfe\xe1\x93\x18" + "\xc3\x9c\xd0\xf2\xe0\xbf\x95\xd2" + "\x6c\xfb\x8b\x77\x01\xe8\x52\x15" + "\x37\x7f\x4b\x85\xcb\x0b\xf0\x93", + }, { + .ksize = 32, + .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", + .plaintext = + "\x00\x01\x02\x03\x04\x05", + .psize = 6, + .digest = + "\xb1\x1e\x7c\x5e\x0d\x10\xa8\xf3" + "\x27\x08\x1d\x7d\xe6\x0a\x1b\x14" + "\xdc\x43\x29\xdc\xe1\x10\xa8\xd4" + "\x23\xe5\x2c\x8e\xca\xce\xcb\xbc" + "\x64\x36\xb7\x43\xd4\x5a\xb7\xdd" + "\x6f\xc1\xe2\x2c\x6a\xc9\x65\x18" + "\xe4\x83\x85\x81\x87\x1b\xe5\x88" + "\x35\x06\x27\xb7\x77\x28\xf7\xfe", + }, { + .ksize = 32, + .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", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06", + .psize = 7, + .digest = + "\xa3\x3e\x50\xbc\xfb\xd9\xf0\x82" + "\xa6\xd1\xdf\xaf\x82\xd0\xcf\x84" + "\x9a\x25\x3c\xae\x6d\xb5\xaf\x01" + "\xd7\xaf\xed\x50\xdc\xe2\xba\xcc" + "\x8c\x38\xf5\x16\x89\x38\x86\xce" + "\x68\x10\x63\x64\xa5\x79\x53\xb5" + "\x2e\x8e\xbc\x0a\xce\x95\xc0\x1e" + "\x69\x59\x1d\x3b\xd8\x19\x90\xd7", + }, { + .ksize = 32, + .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", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07", + .psize = 8, + .digest = + "\xef\x3e\x6b\x63\xd6\xbe\xd0\xf4" + "\x79\x82\x16\x51\x67\x75\x81\xa3" + "\x66\x41\x41\x98\xb4\x19\x9c\xfc" + "\x46\xe1\x4f\xb5\xdd\xb4\xfe\xb0" + "\x81\xd9\x3c\xb2\xf1\x3c\x14\x9e" + "\xc8\x22\x0e\x20\xd8\x19\x98\x90" + "\xfa\x37\x7e\xef\x9a\xc1\xcc\xd5" + "\x87\x52\x36\x53\xcd\x8e\xfd\x2d", + }, { + .ksize = 32, + .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", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08", + .psize = 9, + .digest = + "\x01\x37\xd5\x1f\xb7\x04\x35\x87" + "\x52\xf0\x21\x52\x2e\x9e\xb5\x6e" + "\x33\xbd\x3e\x82\x30\x07\xae\xe6" + "\x97\x76\x98\xcd\xd1\x0d\xe9\x7f" + "\xc6\x03\x88\x44\x7a\xb7\x64\x23" + "\x00\x1b\x3d\x8e\x50\xa3\xe2\xb8" + "\x1b\xdd\xa2\x7b\x0e\x91\x7a\x1a" + "\xa6\x2b\x1f\xa0\xdc\x99\x2a\xcb", + }, { + .ksize = 32, + .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", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09", + .psize = 10, + .digest = + "\x3c\x0d\xac\xfb\x90\x2b\xe4\xf3" + "\x97\x0f\x22\x76\xf6\x4e\xfc\xc8" + "\x47\x3a\xbe\x18\x19\x0c\x54\xbc" + "\x36\xfa\x87\xa4\xe1\x0f\x89\x4b" + "\xaf\xe4\x0c\x16\x03\x59\xa2\x49" + "\x68\x71\x90\x73\x05\xe2\xa1\x9e" + "\x81\xdb\xc8\x6b\xd5\xd1\x5a\x9c" + "\x0f\x30\x9b\x69\xb5\x6a\xc1\x0d", + }, { + .ksize = 32, + .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", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09\x0a", + .psize = 11, + .digest = + "\xc7\xea\x3c\x71\xe0\x22\x16\x58" + "\xa4\xdc\xfb\x36\x51\x41\xba\x85" + "\x02\xd9\x30\xd5\xe1\xef\x1a\x93" + "\x61\xcc\x22\x78\xa3\x78\xa5\x33" + "\xe7\x28\xcf\x0a\xaf\x6c\x2f\x72" + "\x91\xfd\x93\x1c\x15\xfb\xc7\x55" + "\x1f\x2e\x3d\x76\x4b\x5f\x94\x81" + "\x54\xee\x1e\x50\x74\x16\xc4\x07", + }, { + .ksize = 32, + .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", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09\x0a\x0b", + .psize = 12, + .digest = + "\x30\xf6\x1d\xe7\x7c\xc0\x8c\x0f" + "\xb5\x2a\x20\x3d\x8d\xf8\x14\xf8" + "\x65\x2e\x4b\x2b\x5a\xf5\x14\x36" + "\x9b\xfe\xcb\x10\xe0\xe8\x2b\x1c" + "\x64\xb9\x24\xa1\xeb\x24\x8a\xe2" + "\x12\x0e\x40\x39\xd8\x70\xca\xd2" + "\xbd\xad\xda\xf8\x69\x32\xe7\x1b" + "\x73\xf8\x72\x0b\xa3\xb6\x81\x2f", + }, { + .ksize = 32, + .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", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09\x0a\x0b\x0c", + .psize = 13, + .digest = + "\xfd\x0c\x2e\xfe\x35\x5b\x3b\xd7" + "\x62\xdf\x6e\xb6\x82\x3d\x87\xc5" + "\x8c\xea\xfc\xcd\x37\xe2\x8e\x33" + "\x63\x1e\x8d\xf4\x10\x82\x50\x06" + "\x43\x7d\x9c\x0b\x71\xee\xd7\x8c" + "\x24\x98\x4e\x62\x35\x28\x3f\xce" + "\x91\x1d\x64\x32\xfb\x7f\xd2\x10" + "\x41\xb0\xe0\x75\x5f\xc1\x38\xe9", + }, { + .ksize = 32, + .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", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09\x0a\x0b\x0c\x0d", + .psize = 14, + .digest = + "\x7f\xfd\xfc\xaa\x03\x58\x3c\x82" + "\x5a\x74\xeb\xce\x28\x64\x7a\x5c" + "\x02\xa5\x20\x77\xf9\x3c\x5c\xfe" + "\x33\x1d\x0f\x66\xba\x58\xe1\x8b" + "\xa9\x88\xbe\xf5\xb6\xa7\x25\xc2" + "\xe3\x1f\x29\xcc\xd8\xf0\x66\xc9" + "\x5c\x4b\x31\x9f\x25\x96\x5a\x1b" + "\xbf\xe9\x58\x07\xc1\x58\xe1\x2d", + }, { + .ksize = 32, + .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", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09\x0a\x0b\x0c\x0d\x0e", + .psize = 15, + .digest = + "\x61\x02\x3c\xf3\x6f\x19\x38\x52" + "\xf8\x3f\xbc\x3d\x60\x1c\x7f\x82" + "\x86\xa9\x87\xd7\x20\x1b\x10\x25" + "\x0d\xee\x59\x08\x2c\xe6\x4e\xe6" + "\x64\x21\x75\x6e\x4a\xdb\x39\x23" + "\x41\x0b\xe3\x9c\x82\xcf\x43\x80" + "\x8b\x64\x2f\xdb\xe5\x93\x28\x95" + "\x7b\x93\xb8\xd7\x58\x5f\xd8\x16", + }, { + .ksize = 32, + .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", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6", + .psize = 247, + .digest = + "\x4c\x13\x91\xb7\x59\x96\xd3\x28" + "\xd2\x63\xd1\x87\x1a\xbf\xe9\x36" + "\xe2\x49\x98\x66\xb6\x60\x9a\x07" + "\xa0\x4f\x78\x75\x57\x6d\x63\x0a" + "\xcf\xca\x48\x51\xfc\x3c\x79\x1e" + "\x1f\xf6\x3a\x73\x86\x64\x77\x15" + "\xd9\x7c\xf8\xd7\x0d\x13\x2e\x27" + "\x76\x9f\x3c\x10\x40\xdf\x66\x81", + }, { + .ksize = 32, + .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", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7", + .psize = 248, + .digest = + "\x03\xbe\x2b\xc9\x9e\x10\x1d\x98" + "\xb3\xc9\x74\xea\x89\x43\xcd\x1b" + "\x54\xc5\x36\x37\xca\x98\xd0\x23" + "\x5d\x27\xed\x3e\xcb\xc4\x3e\x7d" + "\xef\xe2\x81\xe0\x8c\xbb\x6c\xa9" + "\xf1\xf7\x7f\x66\x2b\xf1\xd2\xe4" + "\x2e\x79\x81\xd3\xf5\xfa\x4a\xff" + "\x3e\x77\x29\x8d\x5f\x06\xae\x41", + }, { + .ksize = 32, + .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", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8", + .psize = 249, + .digest = + "\xe3\x14\xca\xee\x29\x5d\xe9\x89" + "\x2e\xd6\xd3\x38\x40\x11\x32\xfe" + "\xa8\x9c\xde\x7d\xb0\x4f\xdb\xb7" + "\xbe\x32\x3b\x2b\x44\x3e\x03\xf5" + "\xcc\x3f\xcc\x0d\xbb\x35\xa4\xd0" + "\x61\x55\x6f\xde\x9e\x13\xa5\xf7" + "\xf6\xe3\x69\xa1\x6e\xfb\xca\x12" + "\x77\xd7\xcf\xe7\x4e\x20\xf1\x40", + }, { + .ksize = 32, + .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", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9", + .psize = 250, + .digest = + "\xf7\x11\xea\xc5\x2b\xb9\xc7\xab" + "\xcf\x05\x31\xc4\x77\xcf\xbd\x55" + "\x78\xb0\x9a\x6b\x37\xcf\xf3\xee" + "\x9b\x38\x22\x8e\x70\x4e\x6e\xcc" + "\x44\x4b\x92\xae\x3b\x60\x02\xe5" + "\xfa\xfa\xb2\x2e\xb4\x64\x36\xfb" + "\xac\x61\x93\x82\x9c\x32\x30\xaf" + "\x17\xf3\x02\x8a\xc1\xa8\x92\xc9", + }, { + .ksize = 32, + .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", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9\xfa", + .psize = 251, + .digest = + "\x0f\x11\x4a\x24\xe2\x33\x8d\x20" + "\xad\xac\xa7\xe2\xc0\x95\xc2\xfc" + "\x43\x9d\xfd\xa9\x2c\xda\x9a\xe1" + "\x56\x44\xd7\xf3\xdd\xb2\xad\xc5" + "\xfe\x9b\x1e\xd8\xb6\x3c\x94\x01" + "\xf5\x66\x12\x1f\xfe\x1d\x11\x05" + "\xfd\x28\x03\x3f\xb0\x51\xbd\x40" + "\x26\x89\x47\x35\x77\x0b\x07\x35", + }, { + .ksize = 32, + .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", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9\xfa\xfb", + .psize = 252, + .digest = + "\x9c\x3d\x04\x4d\x92\x88\x37\xb9" + "\x5c\x18\xb7\x09\x2c\x2b\x3e\xef" + "\x60\x33\xf8\x0c\x62\xd7\x23\x24" + "\x31\x80\x26\x62\x4a\x7f\x06\xb0" + "\x8b\xbe\x55\x6f\xb4\xd9\x4e\x05" + "\xa5\x28\x49\xb0\x6f\x47\xeb\xf0" + "\x11\xd7\x76\x86\x5f\x9a\xe0\x03" + "\x9a\x8a\x6f\x79\x3f\x6e\xfc\xb2", + }, { + .ksize = 32, + .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", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9\xfa\xfb\xfc", + .psize = 253, + .digest = + "\x92\xa3\x3b\xf6\x10\x03\xcc\x98" + "\x13\xdd\x7d\x24\x1b\xd3\x87\xd2" + "\xcb\xdd\xb3\xc1\xa3\x26\xf4\x34" + "\x7c\x0a\x86\x42\x5b\x41\x97\xdc" + "\xe6\xc7\x17\xd4\x46\x36\x0f\xdc" + "\x45\x94\x32\x45\xb3\xca\x0c\x61" + "\x3f\x00\xb5\xe3\x32\x8e\xaf\x84" + "\x05\x35\x92\x79\x6a\x58\xee\xf8", + }, { + .ksize = 32, + .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", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9\xfa\xfb\xfc\xfd", + .psize = 254, + .digest = + "\x4e\xf6\xc7\xa4\x6d\x03\x30\xbe" + "\xe1\x92\x73\xe0\x7a\x28\xef\x0d" + "\x6b\xa3\xb6\x05\x88\x65\x0e\x6b" + "\x6b\xb7\x7f\x40\x85\x03\xbf\x64" + "\x7a\xc9\x20\xb0\x7b\x04\x44\x4d" + "\xaf\x8b\xc8\x47\xcb\x2d\xe0\xab" + "\xb8\x6b\x22\x3d\x0d\xfc\x85\x90" + "\xf8\x68\x3b\x3d\x4d\x12\x6d\xfc", + }, { + .ksize = 32, + .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", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9\xfa\xfb\xfc\xfd\xfe", + .psize = 255, + .digest = + "\x0c\xea\x91\x68\x12\xcf\x43\x4b" + "\x1a\x2d\x1f\x11\x7f\xb0\x53\x30" + "\x85\xf1\xf6\x64\x68\x2b\x62\x26" + "\x6e\xe6\xad\x54\xa4\x31\xd1\x14" + "\xd1\x10\x1f\x44\x05\x30\x32\x85" + "\xa4\x06\x54\x7a\x6c\xa2\xd2\x64" + "\xc0\x53\x1c\xaa\x2e\xc0\xb3\xf6" + "\xa9\x9f\xba\x80\x11\x60\x41\xfe", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "", + .psize = 0, + .digest = + "\x10\xeb\xb6\x77\x00\xb1\x86\x8e" + "\xfb\x44\x17\x98\x7a\xcf\x46\x90" + "\xae\x9d\x97\x2f\xb7\xa5\x90\xc2" + "\xf0\x28\x71\x79\x9a\xaa\x47\x86" + "\xb5\xe9\x96\xe8\xf0\xf4\xeb\x98" + "\x1f\xc2\x14\xb0\x05\xf4\x2d\x2f" + "\xf4\x23\x34\x99\x39\x16\x53\xdf" + "\x7a\xef\xcb\xc1\x3f\xc5\x15\x68", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\x00", + .psize = 1, + .digest = + "\x96\x1f\x6d\xd1\xe4\xdd\x30\xf6" + "\x39\x01\x69\x0c\x51\x2e\x78\xe4" + "\xb4\x5e\x47\x42\xed\x19\x7c\x3c" + "\x5e\x45\xc5\x49\xfd\x25\xf2\xe4" + "\x18\x7b\x0b\xc9\xfe\x30\x49\x2b" + "\x16\xb0\xd0\xbc\x4e\xf9\xb0\xf3" + "\x4c\x70\x03\xfa\xc0\x9a\x5e\xf1" + "\x53\x2e\x69\x43\x02\x34\xce\xbd", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\x00\x01", + .psize = 2, + .digest = + "\xda\x2c\xfb\xe2\xd8\x40\x9a\x0f" + "\x38\x02\x61\x13\x88\x4f\x84\xb5" + "\x01\x56\x37\x1a\xe3\x04\xc4\x43" + "\x01\x73\xd0\x8a\x99\xd9\xfb\x1b" + "\x98\x31\x64\xa3\x77\x07\x06\xd5" + "\x37\xf4\x9e\x0c\x91\x6d\x9f\x32" + "\xb9\x5c\xc3\x7a\x95\xb9\x9d\x85" + "\x74\x36\xf0\x23\x2c\x88\xa9\x65", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\x00\x01\x02", + .psize = 3, + .digest = + "\x33\xd0\x82\x5d\xdd\xf7\xad\xa9" + "\x9b\x0e\x7e\x30\x71\x04\xad\x07" + "\xca\x9c\xfd\x96\x92\x21\x4f\x15" + "\x61\x35\x63\x15\xe7\x84\xf3\xe5" + "\xa1\x7e\x36\x4a\xe9\xdb\xb1\x4c" + "\xb2\x03\x6d\xf9\x32\xb7\x7f\x4b" + "\x29\x27\x61\x36\x5f\xb3\x28\xde" + "\x7a\xfd\xc6\xd8\x99\x8f\x5f\xc1", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\x00\x01\x02\x03", + .psize = 4, + .digest = + "\xbe\xaa\x5a\x3d\x08\xf3\x80\x71" + "\x43\xcf\x62\x1d\x95\xcd\x69\x05" + "\x14\xd0\xb4\x9e\xff\xf9\xc9\x1d" + "\x24\xb5\x92\x41\xec\x0e\xef\xa5" + "\xf6\x01\x96\xd4\x07\x04\x8b\xba" + "\x8d\x21\x46\x82\x8e\xbc\xb0\x48" + "\x8d\x88\x42\xfd\x56\xbb\x4f\x6d" + "\xf8\xe1\x9c\x4b\x4d\xaa\xb8\xac", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\x00\x01\x02\x03\x04", + .psize = 5, + .digest = + "\x09\x80\x84\xb5\x1f\xd1\x3d\xea" + "\xe5\xf4\x32\x0d\xe9\x4a\x68\x8e" + "\xe0\x7b\xae\xa2\x80\x04\x86\x68" + "\x9a\x86\x36\x11\x7b\x46\xc1\xf4" + "\xc1\xf6\xaf\x7f\x74\xae\x7c\x85" + "\x76\x00\x45\x6a\x58\xa3\xaf\x25" + "\x1d\xc4\x72\x3a\x64\xcc\x7c\x0a" + "\x5a\xb6\xd9\xca\xc9\x1c\x20\xbb", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\x00\x01\x02\x03\x04\x05", + .psize = 6, + .digest = + "\x60\x44\x54\x0d\x56\x08\x53\xeb" + "\x1c\x57\xdf\x00\x77\xdd\x38\x10" + "\x94\x78\x1c\xdb\x90\x73\xe5\xb1" + "\xb3\xd3\xf6\xc7\x82\x9e\x12\x06" + "\x6b\xba\xca\x96\xd9\x89\xa6\x90" + "\xde\x72\xca\x31\x33\xa8\x36\x52" + "\xba\x28\x4a\x6d\x62\x94\x2b\x27" + "\x1f\xfa\x26\x20\xc9\xe7\x5b\x1f", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06", + .psize = 7, + .digest = + "\x7a\x8c\xfe\x9b\x90\xf7\x5f\x7e" + "\xcb\x3a\xcc\x05\x3a\xae\xd6\x19" + "\x31\x12\xb6\xf6\xa4\xae\xeb\x3f" + "\x65\xd3\xde\x54\x19\x42\xde\xb9" + "\xe2\x22\x81\x52\xa3\xc4\xbb\xbe" + "\x72\xfc\x3b\x12\x62\x95\x28\xcf" + "\xbb\x09\xfe\x63\x0f\x04\x74\x33" + "\x9f\x54\xab\xf4\x53\xe2\xed\x52", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07", + .psize = 8, + .digest = + "\x38\x0b\xea\xf6\xea\x7c\xc9\x36" + "\x5e\x27\x0e\xf0\xe6\xf3\xa6\x4f" + "\xb9\x02\xac\xae\x51\xdd\x55\x12" + "\xf8\x42\x59\xad\x2c\x91\xf4\xbc" + "\x41\x08\xdb\x73\x19\x2a\x5b\xbf" + "\xb0\xcb\xcf\x71\xe4\x6c\x3e\x21" + "\xae\xe1\xc5\xe8\x60\xdc\x96\xe8" + "\xeb\x0b\x7b\x84\x26\xe6\xab\xe9", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08", + .psize = 9, + .digest = + "\x60\xfe\x3c\x45\x35\xe1\xb5\x9d" + "\x9a\x61\xea\x85\x00\xbf\xac\x41" + "\xa6\x9d\xff\xb1\xce\xad\xd9\xac" + "\xa3\x23\xe9\xa6\x25\xb6\x4d\xa5" + "\x76\x3b\xad\x72\x26\xda\x02\xb9" + "\xc8\xc4\xf1\xa5\xde\x14\x0a\xc5" + "\xa6\xc1\x12\x4e\x4f\x71\x8c\xe0" + "\xb2\x8e\xa4\x73\x93\xaa\x66\x37", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09", + .psize = 10, + .digest = + "\x4f\xe1\x81\xf5\x4a\xd6\x3a\x29" + "\x83\xfe\xaa\xf7\x7d\x1e\x72\x35" + "\xc2\xbe\xb1\x7f\xa3\x28\xb6\xd9" + "\x50\x5b\xda\x32\x7d\xf1\x9f\xc3" + "\x7f\x02\xc4\xb6\xf0\x36\x8c\xe2" + "\x31\x47\x31\x3a\x8e\x57\x38\xb5" + "\xfa\x2a\x95\xb2\x9d\xe1\xc7\xf8" + "\x26\x4e\xb7\x7b\x69\xf5\x85\xcd", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09\x0a", + .psize = 11, + .digest = + "\xf2\x28\x77\x3c\xe3\xf3\xa4\x2b" + "\x5f\x14\x4d\x63\x23\x7a\x72\xd9" + "\x96\x93\xad\xb8\x83\x7d\x0e\x11" + "\x2a\x8a\x0f\x8f\xff\xf2\xc3\x62" + "\x85\x7a\xc4\x9c\x11\xec\x74\x0d" + "\x15\x00\x74\x9d\xac\x9b\x1f\x45" + "\x48\x10\x8b\xf3\x15\x57\x94\xdc" + "\xc9\xe4\x08\x28\x49\xe2\xb8\x5b", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09\x0a\x0b", + .psize = 12, + .digest = + "\x96\x24\x52\xa8\x45\x5c\xc5\x6c" + "\x85\x11\x31\x7e\x3b\x1f\x3b\x2c" + "\x37\xdf\x75\xf5\x88\xe9\x43\x25" + "\xfd\xd7\x70\x70\x35\x9c\xf6\x3a" + "\x9a\xe6\xe9\x30\x93\x6f\xdf\x8e" + "\x1e\x08\xff\xca\x44\x0c\xfb\x72" + "\xc2\x8f\x06\xd8\x9a\x21\x51\xd1" + "\xc4\x6c\xd5\xb2\x68\xef\x85\x63", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09\x0a\x0b\x0c", + .psize = 13, + .digest = + "\x43\xd4\x4b\xfa\x18\x76\x8c\x59" + "\x89\x6b\xf7\xed\x17\x65\xcb\x2d" + "\x14\xaf\x8c\x26\x02\x66\x03\x90" + "\x99\xb2\x5a\x60\x3e\x4d\xdc\x50" + "\x39\xd6\xef\x3a\x91\x84\x7d\x10" + "\x88\xd4\x01\xc0\xc7\xe8\x47\x78" + "\x1a\x8a\x59\x0d\x33\xa3\xc6\xcb" + "\x4d\xf0\xfa\xb1\xc2\xf2\x23\x55", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09\x0a\x0b\x0c\x0d", + .psize = 14, + .digest = + "\xdc\xff\xa9\xd5\x8c\x2a\x4c\xa2" + "\xcd\xbb\x0c\x7a\xa4\xc4\xc1\xd4" + "\x51\x65\x19\x00\x89\xf4\xe9\x83" + "\xbb\x1c\x2c\xab\x4a\xae\xff\x1f" + "\xa2\xb5\xee\x51\x6f\xec\xd7\x80" + "\x54\x02\x40\xbf\x37\xe5\x6c\x8b" + "\xcc\xa7\xfa\xb9\x80\xe1\xe6\x1c" + "\x94\x00\xd8\xa9\xa5\xb1\x4a\xc6", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\x00\x01\x02\x03\x04\x05\x06\x07" + "\x08\x09\x0a\x0b\x0c\x0d\x0e", + .psize = 15, + .digest = + "\x6f\xbf\x31\xb4\x5a\xb0\xc0\xb8" + "\xda\xd1\xc0\xf5\xf4\x06\x13\x79" + "\x91\x2d\xde\x5a\xa9\x22\x09\x9a" + "\x03\x0b\x72\x5c\x73\x34\x6c\x52" + "\x42\x91\xad\xef\x89\xd2\xf6\xfd" + "\x8d\xfc\xda\x6d\x07\xda\xd8\x11" + "\xa9\x31\x45\x36\xc2\x91\x5e\xd4" + "\x5d\xa3\x49\x47\xe8\x3d\xe3\x4e", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6", + .psize = 247, + .digest = + "\x58\xae\xdf\xce\x6f\x67\xdd\xc8" + "\x5a\x28\xc9\x92\xf1\xc0\xbd\x09" + "\x69\xf0\x41\xe6\x6f\x1e\xe8\x80" + "\x20\xa1\x25\xcb\xfc\xfe\xbc\xd6" + "\x17\x09\xc9\xc4\xeb\xa1\x92\xc1" + "\x5e\x69\xf0\x20\xd4\x62\x48\x60" + "\x19\xfa\x8d\xea\x0c\xd7\xa4\x29" + "\x21\xa1\x9d\x2f\xe5\x46\xd4\x3d", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7", + .psize = 248, + .digest = + "\x93\x47\xbd\x29\x14\x73\xe6\xb4" + "\xe3\x68\x43\x7b\x8e\x56\x1e\x06" + "\x5f\x64\x9a\x6d\x8a\xda\x47\x9a" + "\xd0\x9b\x19\x99\xa8\xf2\x6b\x91" + "\xcf\x61\x20\xfd\x3b\xfe\x01\x4e" + "\x83\xf2\x3a\xcf\xa4\xc0\xad\x7b" + "\x37\x12\xb2\xc3\xc0\x73\x32\x70" + "\x66\x31\x12\xcc\xd9\x28\x5c\xd9", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8", + .psize = 249, + .digest = + "\xb3\x21\x63\xe7\xc5\xdb\xb5\xf5" + "\x1f\xdc\x11\xd2\xea\xc8\x75\xef" + "\xbb\xcb\x7e\x76\x99\x09\x0a\x7e" + "\x7f\xf8\xa8\xd5\x07\x95\xaf\x5d" + "\x74\xd9\xff\x98\x54\x3e\xf8\xcd" + "\xf8\x9a\xc1\x3d\x04\x85\x27\x87" + "\x56\xe0\xef\x00\xc8\x17\x74\x56" + "\x61\xe1\xd5\x9f\xe3\x8e\x75\x37", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9", + .psize = 250, + .digest = + "\x10\x85\xd7\x83\x07\xb1\xc4\xb0" + "\x08\xc5\x7a\x2e\x7e\x5b\x23\x46" + "\x58\xa0\xa8\x2e\x4f\xf1\xe4\xaa" + "\xac\x72\xb3\x12\xfd\xa0\xfe\x27" + "\xd2\x33\xbc\x5b\x10\xe9\xcc\x17" + "\xfd\xc7\x69\x7b\x54\x0c\x7d\x95" + "\xeb\x21\x5a\x19\xa1\xa0\xe2\x0e" + "\x1a\xbf\xa1\x26\xef\xd5\x68\xc7", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9\xfa", + .psize = 251, + .digest = + "\x4e\x5c\x73\x4c\x7d\xde\x01\x1d" + "\x83\xea\xc2\xb7\x34\x7b\x37\x35" + "\x94\xf9\x2d\x70\x91\xb9\xca\x34" + "\xcb\x9c\x6f\x39\xbd\xf5\xa8\xd2" + "\xf1\x34\x37\x9e\x16\xd8\x22\xf6" + "\x52\x21\x70\xcc\xf2\xdd\xd5\x5c" + "\x84\xb9\xe6\xc6\x4f\xc9\x27\xac" + "\x4c\xf8\xdf\xb2\xa1\x77\x01\xf2", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9\xfa\xfb", + .psize = 252, + .digest = + "\x69\x5d\x83\xbd\x99\x0a\x11\x17" + "\xb3\xd0\xce\x06\xcc\x88\x80\x27" + "\xd1\x2a\x05\x4c\x26\x77\xfd\x82" + "\xf0\xd4\xfb\xfc\x93\x57\x55\x23" + "\xe7\x99\x1a\x5e\x35\xa3\x75\x2e" + "\x9b\x70\xce\x62\x99\x2e\x26\x8a" + "\x87\x77\x44\xcd\xd4\x35\xf5\xf1" + "\x30\x86\x9c\x9a\x20\x74\xb3\x38", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9\xfa\xfb\xfc", + .psize = 253, + .digest = + "\xa6\x21\x37\x43\x56\x8e\x3b\x31" + "\x58\xb9\x18\x43\x01\xf3\x69\x08" + "\x47\x55\x4c\x68\x45\x7c\xb4\x0f" + "\xc9\xa4\xb8\xcf\xd8\xd4\xa1\x18" + "\xc3\x01\xa0\x77\x37\xae\xda\x0f" + "\x92\x9c\x68\x91\x3c\x5f\x51\xc8" + "\x03\x94\xf5\x3b\xff\x1c\x3e\x83" + "\xb2\xe4\x0c\xa9\x7e\xba\x9e\x15", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9\xfa\xfb\xfc\xfd", + .psize = 254, + .digest = + "\xd4\x44\xbf\xa2\x36\x2a\x96\xdf" + "\x21\x3d\x07\x0e\x33\xfa\x84\x1f" + "\x51\x33\x4e\x4e\x76\x86\x6b\x81" + "\x39\xe8\xaf\x3b\xb3\x39\x8b\xe2" + "\xdf\xad\xdc\xbc\x56\xb9\x14\x6d" + "\xe9\xf6\x81\x18\xdc\x58\x29\xe7" + "\x4b\x0c\x28\xd7\x71\x19\x07\xb1" + "\x21\xf9\x16\x1c\xb9\x2b\x69\xa9", + }, { + .ksize = 64, + .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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f", + .plaintext = + "\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" + "\x20\x21\x22\x23\x24\x25\x26\x27" + "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" + "\x30\x31\x32\x33\x34\x35\x36\x37" + "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" + "\x40\x41\x42\x43\x44\x45\x46\x47" + "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" + "\x50\x51\x52\x53\x54\x55\x56\x57" + "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" + "\x60\x61\x62\x63\x64\x65\x66\x67" + "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" + "\x70\x71\x72\x73\x74\x75\x76\x77" + "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" + "\x80\x81\x82\x83\x84\x85\x86\x87" + "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" + "\x90\x91\x92\x93\x94\x95\x96\x97" + "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" + "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7" + "\xa8\xa9\xaa\xab\xac\xad\xae\xaf" + "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7" + "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" + "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7" + "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" + "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7" + "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" + "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7" + "\xe8\xe9\xea\xeb\xec\xed\xee\xef" + "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7" + "\xf8\xf9\xfa\xfb\xfc\xfd\xfe", + .psize = 255, + .digest = + "\x14\x27\x09\xd6\x2e\x28\xfc\xcc" + "\xd0\xaf\x97\xfa\xd0\xf8\x46\x5b" + "\x97\x1e\x82\x20\x1d\xc5\x10\x70" + "\xfa\xa0\x37\x2a\xa4\x3e\x92\x48" + "\x4b\xe1\xc1\xe7\x3b\xa1\x09\x06" + "\xd5\xd1\x85\x3d\xb6\xa4\x10\x6e" + "\x0a\x7b\xf9\x80\x0d\x37\x3d\x6d" + "\xee\x2d\x46\xd6\x2e\xf2\xa4\x61", + } +}; + #endif /* _CRYPTO_TESTMGR_H */ -- 2.23.0