diff options
author | Martin Willi <martin@strongswan.org> | 2015-07-16 13:14:04 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-07-17 09:20:26 -0400 |
commit | 6692cbc28e88b4cbffaab84b82bfff888c03ed3a (patch) | |
tree | ad6d0bbb3102922fecaa74d5c3793c3909f5544e /crypto/testmgr.h | |
parent | 3d1e93cdf16cfe6f315167c65dc504e467e4681a (diff) |
crypto: testmgr - Add a longer ChaCha20 test vector
The AVX2 variant of ChaCha20 is used only for messages with >= 512 bytes
length. With the existing test vectors, the implementation could not be
tested. Due that lack of such a long official test vector, this one is
self-generated using chacha20-generic.
Signed-off-by: Martin Willi <martin@strongswan.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/testmgr.h')
-rw-r--r-- | crypto/testmgr.h | 334 |
1 files changed, 333 insertions, 1 deletions
diff --git a/crypto/testmgr.h b/crypto/testmgr.h index 1ae7acd9d210..dc467ab300c7 100644 --- a/crypto/testmgr.h +++ b/crypto/testmgr.h | |||
@@ -31410,7 +31410,7 @@ static struct cipher_testvec salsa20_stream_enc_tv_template[] = { | |||
31410 | }, | 31410 | }, |
31411 | }; | 31411 | }; |
31412 | 31412 | ||
31413 | #define CHACHA20_ENC_TEST_VECTORS 3 | 31413 | #define CHACHA20_ENC_TEST_VECTORS 4 |
31414 | static struct cipher_testvec chacha20_enc_tv_template[] = { | 31414 | static struct cipher_testvec chacha20_enc_tv_template[] = { |
31415 | { /* RFC7539 A.2. Test Vector #1 */ | 31415 | { /* RFC7539 A.2. Test Vector #1 */ |
31416 | .key = "\x00\x00\x00\x00\x00\x00\x00\x00" | 31416 | .key = "\x00\x00\x00\x00\x00\x00\x00\x00" |
@@ -31584,6 +31584,338 @@ static struct cipher_testvec chacha20_enc_tv_template[] = { | |||
31584 | "\x87\xb5\x8d\xfd\x72\x8a\xfa\x36" | 31584 | "\x87\xb5\x8d\xfd\x72\x8a\xfa\x36" |
31585 | "\x75\x7a\x79\x7a\xc1\x88\xd1", | 31585 | "\x75\x7a\x79\x7a\xc1\x88\xd1", |
31586 | .rlen = 127, | 31586 | .rlen = 127, |
31587 | }, { /* Self-made test vector for long data */ | ||
31588 | .key = "\x1c\x92\x40\xa5\xeb\x55\xd3\x8a" | ||
31589 | "\xf3\x33\x88\x86\x04\xf6\xb5\xf0" | ||
31590 | "\x47\x39\x17\xc1\x40\x2b\x80\x09" | ||
31591 | "\x9d\xca\x5c\xbc\x20\x70\x75\xc0", | ||
31592 | .klen = 32, | ||
31593 | .iv = "\x1c\x00\x00\x00\x00\x00\x00\x00" | ||
31594 | "\x00\x00\x00\x00\x00\x00\x00\x01", | ||
31595 | .input = "\x49\xee\xe0\xdc\x24\x90\x40\xcd" | ||
31596 | "\xc5\x40\x8f\x47\x05\xbc\xdd\x81" | ||
31597 | "\x47\xc6\x8d\xe6\xb1\x8f\xd7\xcb" | ||
31598 | "\x09\x0e\x6e\x22\x48\x1f\xbf\xb8" | ||
31599 | "\x5c\xf7\x1e\x8a\xc1\x23\xf2\xd4" | ||
31600 | "\x19\x4b\x01\x0f\x4e\xa4\x43\xce" | ||
31601 | "\x01\xc6\x67\xda\x03\x91\x18\x90" | ||
31602 | "\xa5\xa4\x8e\x45\x03\xb3\x2d\xac" | ||
31603 | "\x74\x92\xd3\x53\x47\xc8\xdd\x25" | ||
31604 | "\x53\x6c\x02\x03\x87\x0d\x11\x0c" | ||
31605 | "\x58\xe3\x12\x18\xfd\x2a\x5b\x40" | ||
31606 | "\x0c\x30\xf0\xb8\x3f\x43\xce\xae" | ||
31607 | "\x65\x3a\x7d\x7c\xf4\x54\xaa\xcc" | ||
31608 | "\x33\x97\xc3\x77\xba\xc5\x70\xde" | ||
31609 | "\xd7\xd5\x13\xa5\x65\xc4\x5f\x0f" | ||
31610 | "\x46\x1a\x0d\x97\xb5\xf3\xbb\x3c" | ||
31611 | "\x84\x0f\x2b\xc5\xaa\xea\xf2\x6c" | ||
31612 | "\xc9\xb5\x0c\xee\x15\xf3\x7d\xbe" | ||
31613 | "\x9f\x7b\x5a\xa6\xae\x4f\x83\xb6" | ||
31614 | "\x79\x49\x41\xf4\x58\x18\xcb\x86" | ||
31615 | "\x7f\x30\x0e\xf8\x7d\x44\x36\xea" | ||
31616 | "\x75\xeb\x88\x84\x40\x3c\xad\x4f" | ||
31617 | "\x6f\x31\x6b\xaa\x5d\xe5\xa5\xc5" | ||
31618 | "\x21\x66\xe9\xa7\xe3\xb2\x15\x88" | ||
31619 | "\x78\xf6\x79\xa1\x59\x47\x12\x4e" | ||
31620 | "\x9f\x9f\x64\x1a\xa0\x22\x5b\x08" | ||
31621 | "\xbe\x7c\x36\xc2\x2b\x66\x33\x1b" | ||
31622 | "\xdd\x60\x71\xf7\x47\x8c\x61\xc3" | ||
31623 | "\xda\x8a\x78\x1e\x16\xfa\x1e\x86" | ||
31624 | "\x81\xa6\x17\x2a\xa7\xb5\xc2\xe7" | ||
31625 | "\xa4\xc7\x42\xf1\xcf\x6a\xca\xb4" | ||
31626 | "\x45\xcf\xf3\x93\xf0\xe7\xea\xf6" | ||
31627 | "\xf4\xe6\x33\x43\x84\x93\xa5\x67" | ||
31628 | "\x9b\x16\x58\x58\x80\x0f\x2b\x5c" | ||
31629 | "\x24\x74\x75\x7f\x95\x81\xb7\x30" | ||
31630 | "\x7a\x33\xa7\xf7\x94\x87\x32\x27" | ||
31631 | "\x10\x5d\x14\x4c\x43\x29\xdd\x26" | ||
31632 | "\xbd\x3e\x3c\x0e\xfe\x0e\xa5\x10" | ||
31633 | "\xea\x6b\x64\xfd\x73\xc6\xed\xec" | ||
31634 | "\xa8\xc9\xbf\xb3\xba\x0b\x4d\x07" | ||
31635 | "\x70\xfc\x16\xfd\x79\x1e\xd7\xc5" | ||
31636 | "\x49\x4e\x1c\x8b\x8d\x79\x1b\xb1" | ||
31637 | "\xec\xca\x60\x09\x4c\x6a\xd5\x09" | ||
31638 | "\x49\x46\x00\x88\x22\x8d\xce\xea" | ||
31639 | "\xb1\x17\x11\xde\x42\xd2\x23\xc1" | ||
31640 | "\x72\x11\xf5\x50\x73\x04\x40\x47" | ||
31641 | "\xf9\x5d\xe7\xa7\x26\xb1\x7e\xb0" | ||
31642 | "\x3f\x58\xc1\x52\xab\x12\x67\x9d" | ||
31643 | "\x3f\x43\x4b\x68\xd4\x9c\x68\x38" | ||
31644 | "\x07\x8a\x2d\x3e\xf3\xaf\x6a\x4b" | ||
31645 | "\xf9\xe5\x31\x69\x22\xf9\xa6\x69" | ||
31646 | "\xc6\x9c\x96\x9a\x12\x35\x95\x1d" | ||
31647 | "\x95\xd5\xdd\xbe\xbf\x93\x53\x24" | ||
31648 | "\xfd\xeb\xc2\x0a\x64\xb0\x77\x00" | ||
31649 | "\x6f\x88\xc4\x37\x18\x69\x7c\xd7" | ||
31650 | "\x41\x92\x55\x4c\x03\xa1\x9a\x4b" | ||
31651 | "\x15\xe5\xdf\x7f\x37\x33\x72\xc1" | ||
31652 | "\x8b\x10\x67\xa3\x01\x57\x94\x25" | ||
31653 | "\x7b\x38\x71\x7e\xdd\x1e\xcc\x73" | ||
31654 | "\x55\xd2\x8e\xeb\x07\xdd\xf1\xda" | ||
31655 | "\x58\xb1\x47\x90\xfe\x42\x21\x72" | ||
31656 | "\xa3\x54\x7a\xa0\x40\xec\x9f\xdd" | ||
31657 | "\xc6\x84\x6e\xca\xae\xe3\x68\xb4" | ||
31658 | "\x9d\xe4\x78\xff\x57\xf2\xf8\x1b" | ||
31659 | "\x03\xa1\x31\xd9\xde\x8d\xf5\x22" | ||
31660 | "\x9c\xdd\x20\xa4\x1e\x27\xb1\x76" | ||
31661 | "\x4f\x44\x55\xe2\x9b\xa1\x9c\xfe" | ||
31662 | "\x54\xf7\x27\x1b\xf4\xde\x02\xf5" | ||
31663 | "\x1b\x55\x48\x5c\xdc\x21\x4b\x9e" | ||
31664 | "\x4b\x6e\xed\x46\x23\xdc\x65\xb2" | ||
31665 | "\xcf\x79\x5f\x28\xe0\x9e\x8b\xe7" | ||
31666 | "\x4c\x9d\x8a\xff\xc1\xa6\x28\xb8" | ||
31667 | "\x65\x69\x8a\x45\x29\xef\x74\x85" | ||
31668 | "\xde\x79\xc7\x08\xae\x30\xb0\xf4" | ||
31669 | "\xa3\x1d\x51\x41\xab\xce\xcb\xf6" | ||
31670 | "\xb5\xd8\x6d\xe0\x85\xe1\x98\xb3" | ||
31671 | "\x43\xbb\x86\x83\x0a\xa0\xf5\xb7" | ||
31672 | "\x04\x0b\xfa\x71\x1f\xb0\xf6\xd9" | ||
31673 | "\x13\x00\x15\xf0\xc7\xeb\x0d\x5a" | ||
31674 | "\x9f\xd7\xb9\x6c\x65\x14\x22\x45" | ||
31675 | "\x6e\x45\x32\x3e\x7e\x60\x1a\x12" | ||
31676 | "\x97\x82\x14\xfb\xaa\x04\x22\xfa" | ||
31677 | "\xa0\xe5\x7e\x8c\x78\x02\x48\x5d" | ||
31678 | "\x78\x33\x5a\x7c\xad\xdb\x29\xce" | ||
31679 | "\xbb\x8b\x61\xa4\xb7\x42\xe2\xac" | ||
31680 | "\x8b\x1a\xd9\x2f\x0b\x8b\x62\x21" | ||
31681 | "\x83\x35\x7e\xad\x73\xc2\xb5\x6c" | ||
31682 | "\x10\x26\x38\x07\xe5\xc7\x36\x80" | ||
31683 | "\xe2\x23\x12\x61\xf5\x48\x4b\x2b" | ||
31684 | "\xc5\xdf\x15\xd9\x87\x01\xaa\xac" | ||
31685 | "\x1e\x7c\xad\x73\x78\x18\x63\xe0" | ||
31686 | "\x8b\x9f\x81\xd8\x12\x6a\x28\x10" | ||
31687 | "\xbe\x04\x68\x8a\x09\x7c\x1b\x1c" | ||
31688 | "\x83\x66\x80\x47\x80\xe8\xfd\x35" | ||
31689 | "\x1c\x97\x6f\xae\x49\x10\x66\xcc" | ||
31690 | "\xc6\xd8\xcc\x3a\x84\x91\x20\x77" | ||
31691 | "\x72\xe4\x24\xd2\x37\x9f\xc5\xc9" | ||
31692 | "\x25\x94\x10\x5f\x40\x00\x64\x99" | ||
31693 | "\xdc\xae\xd7\x21\x09\x78\x50\x15" | ||
31694 | "\xac\x5f\xc6\x2c\xa2\x0b\xa9\x39" | ||
31695 | "\x87\x6e\x6d\xab\xde\x08\x51\x16" | ||
31696 | "\xc7\x13\xe9\xea\xed\x06\x8e\x2c" | ||
31697 | "\xf8\x37\x8c\xf0\xa6\x96\x8d\x43" | ||
31698 | "\xb6\x98\x37\xb2\x43\xed\xde\xdf" | ||
31699 | "\x89\x1a\xe7\xeb\x9d\xa1\x7b\x0b" | ||
31700 | "\x77\xb0\xe2\x75\xc0\xf1\x98\xd9" | ||
31701 | "\x80\x55\xc9\x34\x91\xd1\x59\xe8" | ||
31702 | "\x4b\x0f\xc1\xa9\x4b\x7a\x84\x06" | ||
31703 | "\x20\xa8\x5d\xfa\xd1\xde\x70\x56" | ||
31704 | "\x2f\x9e\x91\x9c\x20\xb3\x24\xd8" | ||
31705 | "\x84\x3d\xe1\x8c\x7e\x62\x52\xe5" | ||
31706 | "\x44\x4b\x9f\xc2\x93\x03\xea\x2b" | ||
31707 | "\x59\xc5\xfa\x3f\x91\x2b\xbb\x23" | ||
31708 | "\xf5\xb2\x7b\xf5\x38\xaf\xb3\xee" | ||
31709 | "\x63\xdc\x7b\xd1\xff\xaa\x8b\xab" | ||
31710 | "\x82\x6b\x37\x04\xeb\x74\xbe\x79" | ||
31711 | "\xb9\x83\x90\xef\x20\x59\x46\xff" | ||
31712 | "\xe9\x97\x3e\x2f\xee\xb6\x64\x18" | ||
31713 | "\x38\x4c\x7a\x4a\xf9\x61\xe8\x9a" | ||
31714 | "\xa1\xb5\x01\xa6\x47\xd3\x11\xd4" | ||
31715 | "\xce\xd3\x91\x49\x88\xc7\xb8\x4d" | ||
31716 | "\xb1\xb9\x07\x6d\x16\x72\xae\x46" | ||
31717 | "\x5e\x03\xa1\x4b\xb6\x02\x30\xa8" | ||
31718 | "\x3d\xa9\x07\x2a\x7c\x19\xe7\x62" | ||
31719 | "\x87\xe3\x82\x2f\x6f\xe1\x09\xd9" | ||
31720 | "\x94\x97\xea\xdd\x58\x9e\xae\x76" | ||
31721 | "\x7e\x35\xe5\xb4\xda\x7e\xf4\xde" | ||
31722 | "\xf7\x32\x87\xcd\x93\xbf\x11\x56" | ||
31723 | "\x11\xbe\x08\x74\xe1\x69\xad\xe2" | ||
31724 | "\xd7\xf8\x86\x75\x8a\x3c\xa4\xbe" | ||
31725 | "\x70\xa7\x1b\xfc\x0b\x44\x2a\x76" | ||
31726 | "\x35\xea\x5d\x85\x81\xaf\x85\xeb" | ||
31727 | "\xa0\x1c\x61\xc2\xf7\x4f\xa5\xdc" | ||
31728 | "\x02\x7f\xf6\x95\x40\x6e\x8a\x9a" | ||
31729 | "\xf3\x5d\x25\x6e\x14\x3a\x22\xc9" | ||
31730 | "\x37\x1c\xeb\x46\x54\x3f\xa5\x91" | ||
31731 | "\xc2\xb5\x8c\xfe\x53\x08\x97\x32" | ||
31732 | "\x1b\xb2\x30\x27\xfe\x25\x5d\xdc" | ||
31733 | "\x08\x87\xd0\xe5\x94\x1a\xd4\xf1" | ||
31734 | "\xfe\xd6\xb4\xa3\xe6\x74\x81\x3c" | ||
31735 | "\x1b\xb7\x31\xa7\x22\xfd\xd4\xdd" | ||
31736 | "\x20\x4e\x7c\x51\xb0\x60\x73\xb8" | ||
31737 | "\x9c\xac\x91\x90\x7e\x01\xb0\xe1" | ||
31738 | "\x8a\x2f\x75\x1c\x53\x2a\x98\x2a" | ||
31739 | "\x06\x52\x95\x52\xb2\xe9\x25\x2e" | ||
31740 | "\x4c\xe2\x5a\x00\xb2\x13\x81\x03" | ||
31741 | "\x77\x66\x0d\xa5\x99\xda\x4e\x8c" | ||
31742 | "\xac\xf3\x13\x53\x27\x45\xaf\x64" | ||
31743 | "\x46\xdc\xea\x23\xda\x97\xd1\xab" | ||
31744 | "\x7d\x6c\x30\x96\x1f\xbc\x06\x34" | ||
31745 | "\x18\x0b\x5e\x21\x35\x11\x8d\x4c" | ||
31746 | "\xe0\x2d\xe9\x50\x16\x74\x81\xa8" | ||
31747 | "\xb4\x34\xb9\x72\x42\xa6\xcc\xbc" | ||
31748 | "\xca\x34\x83\x27\x10\x5b\x68\x45" | ||
31749 | "\x8f\x52\x22\x0c\x55\x3d\x29\x7c" | ||
31750 | "\xe3\xc0\x66\x05\x42\x91\x5f\x58" | ||
31751 | "\xfe\x4a\x62\xd9\x8c\xa9\x04\x19" | ||
31752 | "\x04\xa9\x08\x4b\x57\xfc\x67\x53" | ||
31753 | "\x08\x7c\xbc\x66\x8a\xb0\xb6\x9f" | ||
31754 | "\x92\xd6\x41\x7c\x5b\x2a\x00\x79" | ||
31755 | "\x72", | ||
31756 | .ilen = 1281, | ||
31757 | .result = "\x45\xe8\xe0\xb6\x9c\xca\xfd\x87" | ||
31758 | "\xe8\x1d\x37\x96\x8a\xe3\x40\x35" | ||
31759 | "\xcf\x5e\x3a\x46\x3d\xfb\xd0\x69" | ||
31760 | "\xde\xaf\x7a\xd5\x0d\xe9\x52\xec" | ||
31761 | "\xc2\x82\xe5\x3e\x7d\xb2\x4a\xd9" | ||
31762 | "\xbb\xc3\x9f\xc0\x5d\xac\x93\x8d" | ||
31763 | "\x0e\x6f\xd3\xd7\xfb\x6a\x0d\xce" | ||
31764 | "\x92\x2c\xf7\xbb\x93\x57\xcc\xee" | ||
31765 | "\x42\x72\x6f\xc8\x4b\xd2\x76\xbf" | ||
31766 | "\xa0\xe3\x7a\x39\xf9\x5c\x8e\xfd" | ||
31767 | "\xa1\x1d\x41\xe5\x08\xc1\x1c\x11" | ||
31768 | "\x92\xfd\x39\x5c\x51\xd0\x2f\x66" | ||
31769 | "\x33\x4a\x71\x15\xfe\xee\x12\x54" | ||
31770 | "\x8c\x8f\x34\xd8\x50\x3c\x18\xa6" | ||
31771 | "\xc5\xe1\x46\x8a\xfb\x5f\x7e\x25" | ||
31772 | "\x9b\xe2\xc3\x66\x41\x2b\xb3\xa5" | ||
31773 | "\x57\x0e\x94\x17\x26\x39\xbb\x54" | ||
31774 | "\xae\x2e\x6f\x42\xfb\x4d\x89\x6f" | ||
31775 | "\x9d\xf1\x16\x2e\xe3\xe7\xfc\xe3" | ||
31776 | "\xb2\x4b\x2b\xa6\x7c\x04\x69\x3a" | ||
31777 | "\x70\x5a\xa7\xf1\x31\x64\x19\xca" | ||
31778 | "\x45\x79\xd8\x58\x23\x61\xaf\xc2" | ||
31779 | "\x52\x05\xc3\x0b\xc1\x64\x7c\x81" | ||
31780 | "\xd9\x11\xcf\xff\x02\x3d\x51\x84" | ||
31781 | "\x01\xac\xc6\x2e\x34\x2b\x09\x3a" | ||
31782 | "\xa8\x5d\x98\x0e\x89\xd9\xef\x8f" | ||
31783 | "\xd9\xd7\x7d\xdd\x63\x47\x46\x7d" | ||
31784 | "\xa1\xda\x0b\x53\x7d\x79\xcd\xc9" | ||
31785 | "\x86\xdd\x6b\x13\xa1\x9a\x70\xdd" | ||
31786 | "\x5c\xa1\x69\x3c\xe4\x5d\xe3\x8c" | ||
31787 | "\xe5\xf4\x87\x9c\x10\xcf\x0f\x0b" | ||
31788 | "\xc8\x43\xdc\xf8\x1d\x62\x5e\x5b" | ||
31789 | "\xe2\x03\x06\xc5\x71\xb6\x48\xa5" | ||
31790 | "\xf0\x0f\x2d\xd5\xa2\x73\x55\x8f" | ||
31791 | "\x01\xa7\x59\x80\x5f\x11\x6c\x40" | ||
31792 | "\xff\xb1\xf2\xc6\x7e\x01\xbb\x1c" | ||
31793 | "\x69\x9c\xc9\x3f\x71\x5f\x07\x7e" | ||
31794 | "\xdf\x6f\x99\xca\x9c\xfd\xf9\xb9" | ||
31795 | "\x49\xe7\xcc\x91\xd5\x9b\x8f\x03" | ||
31796 | "\xae\xe7\x61\x32\xef\x41\x6c\x75" | ||
31797 | "\x84\x9b\x8c\xce\x1d\x6b\x93\x21" | ||
31798 | "\x41\xec\xc6\xad\x8e\x0c\x48\xa8" | ||
31799 | "\xe2\xf5\x57\xde\xf7\x38\xfd\x4a" | ||
31800 | "\x6f\xa7\x4a\xf9\xac\x7d\xb1\x85" | ||
31801 | "\x7d\x6c\x95\x0a\x5a\xcf\x68\xd2" | ||
31802 | "\xe0\x7a\x26\xd9\xc1\x6d\x3e\xc6" | ||
31803 | "\x37\xbd\xbe\x24\x36\x77\x9f\x1b" | ||
31804 | "\xc1\x22\xf3\x79\xae\x95\x78\x66" | ||
31805 | "\x97\x11\xc0\x1a\xf1\xe8\x0d\x38" | ||
31806 | "\x09\xc2\xee\xb7\xd3\x46\x7b\x59" | ||
31807 | "\x77\x23\xe8\xb4\x92\x3d\x78\xbe" | ||
31808 | "\xe2\x25\x63\xa5\x2a\x06\x70\x92" | ||
31809 | "\x32\x63\xf9\x19\x21\x68\xe1\x0b" | ||
31810 | "\x9a\xd0\xee\x21\xdb\x1f\xe0\xde" | ||
31811 | "\x3e\x64\x02\x4d\x0e\xe0\x0a\xa9" | ||
31812 | "\xed\x19\x8c\xa8\xbf\xe3\x2e\x75" | ||
31813 | "\x24\x2b\xb0\xe5\x82\x6a\x1e\x6f" | ||
31814 | "\x71\x2a\x3a\x60\xed\x06\x0d\x17" | ||
31815 | "\xa2\xdb\x29\x1d\xae\xb2\xc4\xfb" | ||
31816 | "\x94\x04\xd8\x58\xfc\xc4\x04\x4e" | ||
31817 | "\xee\xc7\xc1\x0f\xe9\x9b\x63\x2d" | ||
31818 | "\x02\x3e\x02\x67\xe5\xd8\xbb\x79" | ||
31819 | "\xdf\xd2\xeb\x50\xe9\x0a\x02\x46" | ||
31820 | "\xdf\x68\xcf\xe7\x2b\x0a\x56\xd6" | ||
31821 | "\xf7\xbc\x44\xad\xb8\xb5\x5f\xeb" | ||
31822 | "\xbc\x74\x6b\xe8\x7e\xb0\x60\xc6" | ||
31823 | "\x0d\x96\x09\xbb\x19\xba\xe0\x3c" | ||
31824 | "\xc4\x6c\xbf\x0f\x58\xc0\x55\x62" | ||
31825 | "\x23\xa0\xff\xb5\x1c\xfd\x18\xe1" | ||
31826 | "\xcf\x6d\xd3\x52\xb4\xce\xa6\xfa" | ||
31827 | "\xaa\xfb\x1b\x0b\x42\x6d\x79\x42" | ||
31828 | "\x48\x70\x5b\x0e\xdd\x3a\xc9\x69" | ||
31829 | "\x8b\x73\x67\xf6\x95\xdb\x8c\xfb" | ||
31830 | "\xfd\xb5\x08\x47\x42\x84\x9a\xfa" | ||
31831 | "\xcc\x67\xb2\x3c\xb6\xfd\xd8\x32" | ||
31832 | "\xd6\x04\xb6\x4a\xea\x53\x4b\xf5" | ||
31833 | "\x94\x16\xad\xf0\x10\x2e\x2d\xb4" | ||
31834 | "\x8b\xab\xe5\x89\xc7\x39\x12\xf3" | ||
31835 | "\x8d\xb5\x96\x0b\x87\x5d\xa7\x7c" | ||
31836 | "\xb0\xc2\xf6\x2e\x57\x97\x2c\xdc" | ||
31837 | "\x54\x1c\x34\x72\xde\x0c\x68\x39" | ||
31838 | "\x9d\x32\xa5\x75\x92\x13\x32\xea" | ||
31839 | "\x90\x27\xbd\x5b\x1d\xb9\x21\x02" | ||
31840 | "\x1c\xcc\xba\x97\x5e\x49\x58\xe8" | ||
31841 | "\xac\x8b\xf3\xce\x3c\xf0\x00\xe9" | ||
31842 | "\x6c\xae\xe9\x77\xdf\xf4\x02\xcd" | ||
31843 | "\x55\x25\x89\x9e\x90\xf3\x6b\x8f" | ||
31844 | "\xb7\xd6\x47\x98\x26\x2f\x31\x2f" | ||
31845 | "\x8d\xbf\x54\xcd\x99\xeb\x80\xd7" | ||
31846 | "\xac\xc3\x08\xc2\xa6\x32\xf1\x24" | ||
31847 | "\x76\x7c\x4f\x78\x53\x55\xfb\x00" | ||
31848 | "\x8a\xd6\x52\x53\x25\x45\xfb\x0a" | ||
31849 | "\x6b\xb9\xbe\x3c\x5e\x11\xcc\x6a" | ||
31850 | "\xdd\xfc\xa7\xc4\x79\x4d\xbd\xfb" | ||
31851 | "\xce\x3a\xf1\x7a\xda\xeb\xfe\x64" | ||
31852 | "\x28\x3d\x0f\xee\x80\xba\x0c\xf8" | ||
31853 | "\xe9\x5b\x3a\xd4\xae\xc9\xf3\x0e" | ||
31854 | "\xe8\x5d\xc5\x5c\x0b\x20\x20\xee" | ||
31855 | "\x40\x0d\xde\x07\xa7\x14\xb4\x90" | ||
31856 | "\xb6\xbd\x3b\xae\x7d\x2b\xa7\xc7" | ||
31857 | "\xdc\x0b\x4c\x5d\x65\xb0\xd2\xc5" | ||
31858 | "\x79\x61\x23\xe0\xa2\x99\x73\x55" | ||
31859 | "\xad\xc6\xfb\xc7\x54\xb5\x98\x1f" | ||
31860 | "\x8c\x86\xc2\x3f\xbe\x5e\xea\x64" | ||
31861 | "\xa3\x60\x18\x9f\x80\xaf\x52\x74" | ||
31862 | "\x1a\xfe\x22\xc2\x92\x67\x40\x02" | ||
31863 | "\x08\xee\x67\x5b\x67\xe0\x3d\xde" | ||
31864 | "\x7a\xaf\x8e\x28\xf3\x5e\x0e\xf4" | ||
31865 | "\x48\x56\xaa\x85\x22\xd8\x36\xed" | ||
31866 | "\x3b\x3d\x68\x69\x30\xbc\x71\x23" | ||
31867 | "\xb1\x6e\x61\x03\x89\x44\x03\xf4" | ||
31868 | "\x32\xaa\x4c\x40\x9f\x69\xfb\x70" | ||
31869 | "\x91\xcc\x1f\x11\xbd\x76\x67\xe6" | ||
31870 | "\x10\x8b\x29\x39\x68\xea\x4e\x6d" | ||
31871 | "\xae\xfb\x40\xcf\xe2\xd0\x0d\x8d" | ||
31872 | "\x6f\xed\x9b\x8d\x64\x7a\x94\x8e" | ||
31873 | "\x32\x38\x78\xeb\x7d\x5f\xf9\x4d" | ||
31874 | "\x13\xbe\x21\xea\x16\xe7\x5c\xee" | ||
31875 | "\xcd\xf6\x5f\xc6\x45\xb2\x8f\x2b" | ||
31876 | "\xb5\x93\x3e\x45\xdb\xfd\xa2\x6a" | ||
31877 | "\xec\x83\x92\x99\x87\x47\xe0\x7c" | ||
31878 | "\xa2\x7b\xc4\x2a\xcd\xc0\x81\x03" | ||
31879 | "\x98\xb0\x87\xb6\x86\x13\x64\x33" | ||
31880 | "\x4c\xd7\x99\xbf\xdb\x7b\x6e\xaa" | ||
31881 | "\x76\xcc\xa0\x74\x1b\xa3\x6e\x83" | ||
31882 | "\xd4\xba\x7a\x84\x9d\x91\x71\xcd" | ||
31883 | "\x60\x2d\x56\xfd\x26\x35\xcb\xeb" | ||
31884 | "\xac\xe9\xee\xa4\xfc\x18\x5b\x91" | ||
31885 | "\xd5\xfe\x84\x45\xe0\xc7\xfd\x11" | ||
31886 | "\xe9\x00\xb6\x54\xdf\xe1\x94\xde" | ||
31887 | "\x2b\x70\x9f\x94\x7f\x15\x0e\x83" | ||
31888 | "\x63\x10\xb3\xf5\xea\xd3\xe8\xd1" | ||
31889 | "\xa5\xfc\x17\x19\x68\x9a\xbc\x17" | ||
31890 | "\x30\x43\x0a\x1a\x33\x92\xd4\x2a" | ||
31891 | "\x2e\x68\x99\xbc\x49\xf0\x68\xe3" | ||
31892 | "\xf0\x1f\xcb\xcc\xfa\xbb\x05\x56" | ||
31893 | "\x46\x84\x8b\x69\x83\x64\xc5\xe0" | ||
31894 | "\xc5\x52\x99\x07\x3c\xa6\x5c\xaf" | ||
31895 | "\xa3\xde\xd7\xdb\x43\xe6\xb7\x76" | ||
31896 | "\x4e\x4d\xd6\x71\x60\x63\x4a\x0c" | ||
31897 | "\x5f\xae\x25\x84\x22\x90\x5f\x26" | ||
31898 | "\x61\x4d\x8f\xaf\xc9\x22\xf2\x05" | ||
31899 | "\xcf\xc1\xdc\x68\xe5\x57\x8e\x24" | ||
31900 | "\x1b\x30\x59\xca\xd7\x0d\xc3\xd3" | ||
31901 | "\x52\x9e\x09\x3e\x0e\xaf\xdb\x5f" | ||
31902 | "\xc7\x2b\xde\x3a\xfd\xad\x93\x04" | ||
31903 | "\x74\x06\x89\x0e\x90\xeb\x85\xff" | ||
31904 | "\xe6\x3c\x12\x42\xf4\xfa\x80\x75" | ||
31905 | "\x5e\x4e\xd7\x2f\x93\x0b\x34\x41" | ||
31906 | "\x02\x85\x68\xd0\x03\x12\xde\x92" | ||
31907 | "\x54\x7a\x7e\xfb\x55\xe7\x88\xfb" | ||
31908 | "\xa4\xa9\xf2\xd1\xc6\x70\x06\x37" | ||
31909 | "\x25\xee\xa7\x6e\xd9\x89\x86\x50" | ||
31910 | "\x2e\x07\xdb\xfb\x2a\x86\x45\x0e" | ||
31911 | "\x91\xf4\x7c\xbb\x12\x60\xe8\x3f" | ||
31912 | "\x71\xbe\x8f\x9d\x26\xef\xd9\x89" | ||
31913 | "\xc4\x8f\xd8\xc5\x73\xd8\x84\xaa" | ||
31914 | "\x2f\xad\x22\x1e\x7e\xcf\xa2\x08" | ||
31915 | "\x23\x45\x89\x42\xa0\x30\xeb\xbf" | ||
31916 | "\xa1\xed\xad\xd5\x76\xfa\x24\x8f" | ||
31917 | "\x98", | ||
31918 | .rlen = 1281, | ||
31587 | }, | 31919 | }, |
31588 | }; | 31920 | }; |
31589 | 31921 | ||