summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOscar Jacobsson <oscar@ayoy.se>2014-06-29 21:38:09 +0100
committerDr. Stephen Henson <steve@openssl.org>2014-06-29 21:38:09 +0100
commit7e6a01bdd42e2e5087c9093f1648f1449499f027 (patch)
treed67de8980c677e5db28a275c8457b92fd5f080dd
parent8892ce77143fb01f27354dc63489e43eb7953b03 (diff)
Add 3072, 7680 and 15360 bit RSA tests to openssl speed
PR#3412
-rw-r--r--apps/speed.c24
-rw-r--r--apps/testrsa.h1492
2 files changed, 1510 insertions, 6 deletions
diff --git a/apps/speed.c b/apps/speed.c
index 619269bc69..b5b7d50b06 100644
--- a/apps/speed.c
+++ b/apps/speed.c
@@ -229,7 +229,7 @@ static int do_multi(int multi);
#define ALGOR_NUM 30
#define SIZE_NUM 5
#define PRIME_NUM 3
-#define RSA_NUM 4
+#define RSA_NUM 7
#define DSA_NUM 3
#define EC_NUM 16
@@ -512,7 +512,10 @@ int MAIN(int argc, char **argv)
#define R_RSA_512 0
#define R_RSA_1024 1
#define R_RSA_2048 2
-#define R_RSA_4096 3
+#define R_RSA_3072 3
+#define R_RSA_4096 4
+#define R_RSA_7680 5
+#define R_RSA_15360 6
#define R_EC_P160 0
#define R_EC_P192 1
@@ -534,12 +537,14 @@ int MAIN(int argc, char **argv)
#ifndef OPENSSL_NO_RSA
RSA *rsa_key[RSA_NUM];
long rsa_c[RSA_NUM][2];
- static unsigned int rsa_bits[RSA_NUM]={512,1024,2048,4096};
+ static unsigned int rsa_bits[RSA_NUM]={512,1024,2048,3072,4096,7680,15360};
static unsigned char *rsa_data[RSA_NUM]=
- {test512,test1024,test2048,test4096};
+ {test512,test1024,test2048,test3072,test4096,test7680,test15360};
static int rsa_data_length[RSA_NUM]={
sizeof(test512),sizeof(test1024),
- sizeof(test2048),sizeof(test4096)};
+ sizeof(test2048),sizeof(test3072),
+ sizeof(test4096),sizeof(test7680),
+ sizeof(test15360)};
#endif
#ifndef OPENSSL_NO_DSA
DSA *dsa_key[DSA_NUM];
@@ -883,7 +888,10 @@ int MAIN(int argc, char **argv)
else if (strcmp(*argv,"rsa512") == 0) rsa_doit[R_RSA_512]=2;
else if (strcmp(*argv,"rsa1024") == 0) rsa_doit[R_RSA_1024]=2;
else if (strcmp(*argv,"rsa2048") == 0) rsa_doit[R_RSA_2048]=2;
+ else if (strcmp(*argv,"rsa3072") == 0) rsa_doit[R_RSA_3072]=2;
else if (strcmp(*argv,"rsa4096") == 0) rsa_doit[R_RSA_4096]=2;
+ else if (strcmp(*argv,"rsa7680") == 0) rsa_doit[R_RSA_7680]=2;
+ else if (strcmp(*argv,"rsa15360") == 0) rsa_doit[R_RSA_15360]=2;
else
#ifndef OPENSSL_NO_RC2
if (strcmp(*argv,"rc2-cbc") == 0) doit[D_CBC_RC2]=1;
@@ -953,7 +961,10 @@ int MAIN(int argc, char **argv)
rsa_doit[R_RSA_512]=1;
rsa_doit[R_RSA_1024]=1;
rsa_doit[R_RSA_2048]=1;
+ rsa_doit[R_RSA_3072]=1;
rsa_doit[R_RSA_4096]=1;
+ rsa_doit[R_RSA_7680]=1;
+ rsa_doit[R_RSA_15360]=1;
}
else
#endif
@@ -1103,7 +1114,8 @@ int MAIN(int argc, char **argv)
BIO_printf(bio_err,"\n");
#ifndef OPENSSL_NO_RSA
- BIO_printf(bio_err,"rsa512 rsa1024 rsa2048 rsa4096\n");
+ BIO_printf(bio_err,"rsa512 rsa1024 rsa2048 rsa3072 rsa4096\n");
+ BIO_printf(bio_err,"rsa7680 rsa15360\n");
#endif
#ifndef OPENSSL_NO_DSA
diff --git a/apps/testrsa.h b/apps/testrsa.h
index 3007d792b0..e888213ff5 100644
--- a/apps/testrsa.h
+++ b/apps/testrsa.h
@@ -279,6 +279,186 @@ static unsigned char test2048[]={
0x95,
};
+static unsigned char test3072[]={
+ 0x30,0x82,0x06,0xe3,0x02,0x01,0x00,0x02,0x82,0x01,
+ 0x81,0x00,0xbc,0x3b,0x23,0xc0,0x33,0xa7,0x8b,0xaa,
+ 0xca,0xa3,0x8c,0x94,0xf2,0x4c,0x52,0x08,0x85,0x80,
+ 0xfc,0x36,0x15,0xfa,0x03,0x06,0xb6,0xd6,0x3f,0x60,
+ 0x8a,0x89,0x0d,0xba,0x1a,0x51,0x0b,0x12,0xea,0x71,
+ 0x77,0xf6,0x3a,0x30,0x21,0x3d,0x24,0xf8,0x2e,0xd0,
+ 0x17,0x3a,0x85,0x94,0x25,0x42,0x89,0xff,0x6a,0x68,
+ 0xdf,0x1f,0x86,0xae,0xa5,0xbb,0x9a,0x79,0xf6,0x69,
+ 0x94,0xfe,0xde,0xfe,0xce,0x1b,0x2e,0xae,0x1d,0x91,
+ 0xcb,0xb9,0xf1,0x2d,0xd8,0x00,0x82,0x51,0x8e,0xf9,
+ 0xfd,0xac,0xf1,0x0e,0x7f,0xb7,0x95,0x85,0x35,0xf9,
+ 0xcb,0xbe,0x5f,0xd3,0x58,0xe3,0xa1,0x54,0x9e,0x30,
+ 0xb1,0x8d,0x01,0x97,0x82,0x06,0x8e,0x77,0xfb,0xce,
+ 0x50,0x2f,0xbf,0xf1,0xff,0x57,0x0a,0x42,0x03,0xfd,
+ 0x0e,0xba,0x1e,0xca,0x85,0xc1,0x9b,0xa5,0x9d,0x09,
+ 0x0e,0xe9,0xbb,0xc5,0x73,0x47,0x0d,0x39,0x3c,0x64,
+ 0x06,0x9a,0x79,0x3f,0x50,0x87,0x9c,0x18,0x2d,0x62,
+ 0x01,0xfc,0xed,0xc1,0x58,0x28,0x21,0x94,0x1e,0xf9,
+ 0x2d,0x96,0x4f,0xd0,0xbc,0xf1,0xe0,0x8a,0xfa,0x4d,
+ 0xb6,0x78,0x4a,0xde,0x17,0x59,0xb0,0x22,0xa0,0x9a,
+ 0xd3,0x70,0xb6,0xc2,0xbe,0xbc,0x96,0xca,0x41,0x5f,
+ 0x58,0x4e,0xce,0xef,0x64,0x45,0xdd,0x3f,0x81,0x92,
+ 0xcc,0x40,0x79,0xfc,0x19,0xe2,0xbc,0x77,0x2f,0x43,
+ 0xfb,0x8e,0xad,0x82,0x4a,0x0b,0xb1,0xbc,0x09,0x8a,
+ 0x80,0xc3,0x0f,0xef,0xd2,0x06,0xd3,0x4b,0x0c,0x7f,
+ 0xae,0x60,0x3f,0x2e,0x52,0xb4,0xe4,0xc2,0x5c,0xa6,
+ 0x71,0xc0,0x13,0x9c,0xca,0xa6,0x0d,0x13,0xd7,0xb7,
+ 0x14,0x94,0x3f,0x0d,0x8b,0x06,0x70,0x2f,0x15,0x82,
+ 0x8d,0x47,0x45,0xa6,0x00,0x8a,0x14,0x91,0xde,0x2f,
+ 0x50,0x17,0xe3,0x1d,0x34,0x29,0x8c,0xe4,0x57,0x74,
+ 0x2a,0x3a,0x82,0x65,0x26,0xf7,0x8d,0xcc,0x1b,0x8f,
+ 0xaf,0xe5,0x85,0xe5,0xbe,0x85,0xd6,0xb7,0x04,0xe8,
+ 0xf5,0xd4,0x74,0xe2,0x54,0x14,0xdd,0x58,0xcf,0x1f,
+ 0x11,0x8a,0x9f,0x82,0xa2,0x01,0xf9,0xc2,0xdf,0x7b,
+ 0x84,0xb1,0xd8,0x5b,0x70,0xbb,0x24,0xe7,0xd0,0x2a,
+ 0x75,0x3d,0x55,0xac,0x45,0xe9,0xab,0xc6,0x84,0x8a,
+ 0xe7,0x6d,0x26,0x12,0x89,0xb5,0x67,0xe8,0x46,0x9d,
+ 0x46,0x1a,0xfa,0x2d,0xc0,0x5b,0x60,0x46,0x8b,0xb7,
+ 0x32,0x03,0xff,0x75,0xee,0x9f,0x3c,0xdd,0xb6,0x35,
+ 0x4e,0x82,0xbd,0x99,0x73,0x51,0x02,0x03,0x01,0x00,
+ 0x01,0x02,0x82,0x01,0x80,0x42,0xee,0xa4,0x9f,0xcb,
+ 0xbe,0x60,0x23,0xb3,0x3a,0xc4,0xda,0x91,0xee,0x21,
+ 0x9d,0x76,0x1b,0x8f,0x93,0x8b,0xed,0x02,0xf6,0x78,
+ 0x3d,0x66,0xfb,0xe5,0x47,0x26,0xe2,0x6e,0x49,0x33,
+ 0x2e,0xde,0xbe,0xca,0x71,0x7b,0xef,0x71,0x62,0x54,
+ 0xab,0x0b,0xba,0x63,0x08,0x24,0x47,0xb1,0x98,0x1f,
+ 0x89,0xfb,0x44,0x9f,0x52,0x8e,0x89,0xbb,0xd5,0x21,
+ 0xf1,0x0c,0x76,0x2e,0xcd,0x12,0x6e,0x78,0xcb,0xa1,
+ 0xa5,0xb8,0x4e,0x07,0xab,0x6e,0xdf,0x66,0x57,0x87,
+ 0xff,0x88,0x5f,0xcc,0x9c,0x9a,0x7b,0x15,0x5f,0x2a,
+ 0x83,0xdb,0xd5,0x9f,0x65,0x6a,0x9d,0xb4,0x95,0xfc,
+ 0xe0,0x22,0x00,0x1e,0xa2,0x8d,0x56,0x5a,0x9e,0x0a,
+ 0x3b,0x10,0x07,0x24,0xec,0x55,0xcc,0xaf,0x87,0x3b,
+ 0xd6,0x8d,0xa4,0x86,0x80,0x18,0x42,0xdb,0x9d,0x24,
+ 0xc3,0x97,0x3b,0x89,0x5a,0x03,0xb3,0x0a,0x72,0xd1,
+ 0x78,0xf0,0xc8,0x80,0xb0,0x9d,0x3c,0xae,0x5e,0x0a,
+ 0x5b,0x6e,0x87,0xd3,0x3d,0x25,0x2e,0x03,0x33,0x01,
+ 0xfd,0xb1,0xa5,0xd9,0x58,0x01,0xb9,0xaf,0xf6,0x32,
+ 0x6a,0x38,0xe7,0x39,0x63,0x3c,0xfc,0x0c,0x41,0x90,
+ 0x28,0x40,0x03,0xcd,0xfb,0xde,0x80,0x74,0x21,0xaa,
+ 0xae,0x58,0xe9,0x97,0x18,0x85,0x58,0x3d,0x2b,0xd6,
+ 0x61,0xf6,0xe8,0xbc,0x6d,0x2a,0xf3,0xb8,0xea,0x8c,
+ 0x64,0x44,0xc6,0xd3,0x9f,0x00,0x7b,0xb2,0x52,0x18,
+ 0x11,0x04,0x96,0xb7,0x05,0xbb,0xc2,0x38,0x5b,0xa7,
+ 0x0a,0x84,0xb6,0x4f,0x02,0x63,0xa4,0x57,0x00,0xe3,
+ 0xde,0xe4,0xf2,0xb3,0x55,0xd9,0x00,0xa9,0xd2,0x5c,
+ 0x69,0x9f,0xe5,0x80,0x4f,0x23,0x7c,0xd9,0xa7,0x77,
+ 0x4a,0xbb,0x09,0x6d,0x45,0x02,0xcf,0x32,0x90,0xfd,
+ 0x10,0xb6,0xb3,0x93,0xd9,0x3b,0x1d,0x57,0x66,0xb5,
+ 0xb3,0xb1,0x6e,0x53,0x5f,0x04,0x60,0x29,0xcd,0xe8,
+ 0xb8,0xab,0x62,0x82,0x33,0x40,0xc7,0xf8,0x64,0x60,
+ 0x0e,0xab,0x06,0x3e,0xa0,0xa3,0x62,0x11,0x3f,0x67,
+ 0x5d,0x24,0x9e,0x60,0x29,0xdc,0x4c,0xd5,0x13,0xee,
+ 0x3d,0xb7,0x84,0x93,0x27,0xb5,0x6a,0xf9,0xf0,0xdd,
+ 0x50,0xac,0x46,0x3c,0xe6,0xd5,0xec,0xf7,0xb7,0x9f,
+ 0x23,0x39,0x9c,0x88,0x8c,0x5a,0x62,0x3f,0x8d,0x4a,
+ 0xd7,0xeb,0x5e,0x1e,0x49,0xf8,0xa9,0x53,0x11,0x75,
+ 0xd0,0x43,0x1e,0xc7,0x29,0x22,0x80,0x1f,0xc5,0x83,
+ 0x8d,0x20,0x04,0x87,0x7f,0x57,0x8c,0xf5,0xa1,0x02,
+ 0x81,0xc1,0x00,0xf7,0xaa,0xf5,0xa5,0x00,0xdb,0xd6,
+ 0x11,0xfc,0x07,0x6d,0x22,0x24,0x2b,0x4b,0xc5,0x67,
+ 0x0f,0x37,0xa5,0xdb,0x8f,0x38,0xe2,0x05,0x43,0x9a,
+ 0x44,0x05,0x3f,0xa9,0xac,0x4c,0x98,0x3c,0x72,0x38,
+ 0xc3,0x89,0x33,0x58,0x73,0x51,0xcc,0x5d,0x2f,0x8f,
+ 0x6d,0x3f,0xa1,0x22,0x9e,0xfb,0x9a,0xb4,0xb8,0x79,
+ 0x95,0xaf,0x83,0xcf,0x5a,0xb7,0x14,0x14,0x0c,0x51,
+ 0x8a,0x11,0xe6,0xd6,0x21,0x1e,0x17,0x13,0xd3,0x69,
+ 0x7a,0x3a,0xd5,0xaf,0x3f,0xb8,0x25,0x01,0xcb,0x2b,
+ 0xe6,0xfc,0x03,0xd8,0xd4,0xf7,0x20,0xe0,0x21,0xef,
+ 0x1a,0xca,0x61,0xeb,0x8e,0x96,0x45,0x8e,0x5c,0xe6,
+ 0x81,0x0b,0x2d,0x05,0x32,0xf9,0x41,0x62,0xb4,0x33,
+ 0x98,0x10,0x3a,0xcd,0xf0,0x7a,0x8b,0x1a,0x48,0xd7,
+ 0x3b,0x01,0xf5,0x18,0x65,0x8f,0x3c,0xc2,0x31,0x3b,
+ 0xd3,0xa7,0x17,0x5f,0x7c,0x0c,0xe7,0x25,0x18,0x5a,
+ 0x08,0xe1,0x09,0x89,0x13,0xa7,0xc5,0x12,0xab,0x88,
+ 0x30,0xcd,0x06,0xf9,0xba,0x6f,0xca,0x9c,0x8a,0xda,
+ 0x3e,0x53,0x90,0xd7,0x16,0x2e,0xfc,0xbc,0xad,0xd6,
+ 0x3d,0xc0,0x66,0x4c,0x02,0x3d,0x31,0xfd,0x6c,0xdb,
+ 0x1c,0xdf,0x96,0x33,0x23,0x02,0x81,0xc1,0x00,0xc2,
+ 0x90,0x47,0xc4,0xfb,0x59,0xf0,0xc5,0x14,0x75,0x29,
+ 0xfa,0x77,0xa1,0x8d,0xd4,0x90,0xa1,0x0d,0x3f,0x16,
+ 0x88,0xe3,0x4c,0x8f,0x8f,0x18,0x8c,0x9c,0x8a,0xd5,
+ 0xa7,0x41,0x99,0xf3,0x80,0x8e,0xb1,0xb8,0x63,0xd8,
+ 0x3f,0x95,0xd0,0xd0,0x2b,0xf5,0xe6,0x93,0xe8,0xfe,
+ 0xd0,0x73,0xd5,0xbd,0xb4,0xee,0x51,0x19,0x6a,0x10,
+ 0xca,0xc8,0xba,0xa4,0x4d,0x84,0x54,0x38,0x17,0xb5,
+ 0xd0,0xa8,0x75,0x22,0xc5,0x1b,0x61,0xa6,0x51,0x88,
+ 0x63,0xf0,0x4f,0xd1,0x88,0xd9,0x16,0x49,0x30,0xe1,
+ 0xa8,0x47,0xc9,0x30,0x1d,0x5c,0x75,0xd8,0x89,0xb6,
+ 0x1d,0x45,0xd8,0x0f,0x94,0x89,0xb3,0xe4,0x51,0xfa,
+ 0x21,0xff,0x6f,0xb6,0x30,0x6f,0x33,0x24,0xbc,0x09,
+ 0x98,0xe9,0x20,0x02,0x0b,0xde,0xff,0xc5,0x06,0xb6,
+ 0x28,0xa3,0xa1,0x07,0xe8,0xe1,0xd2,0xc2,0xf1,0xd1,
+ 0x23,0x6b,0x4c,0x3a,0xae,0x85,0xec,0xf9,0xff,0xa7,
+ 0x9b,0x25,0xb8,0x95,0x1d,0xa8,0x14,0x81,0x4f,0x79,
+ 0x4f,0xd6,0x39,0x5d,0xe6,0x5f,0xd2,0x34,0x54,0x8b,
+ 0x1e,0x40,0x4c,0x15,0x5a,0x45,0xce,0x0c,0xb0,0xdf,
+ 0xa1,0x17,0xb8,0xb0,0x6a,0x82,0xa5,0x97,0x92,0x70,
+ 0xfb,0x02,0x81,0xc0,0x77,0x46,0x44,0x2b,0x04,0xf0,
+ 0xda,0x75,0xaa,0xd4,0xc0,0xc0,0x32,0x7f,0x0f,0x6c,
+ 0xb0,0x27,0x69,0xfb,0x5c,0x73,0xeb,0x47,0x1e,0x95,
+ 0xe2,0x13,0x64,0x1b,0xb6,0xd1,0x1d,0xca,0x2b,0x42,
+ 0x2f,0x08,0x2c,0x69,0x27,0xed,0xd1,0xb5,0x04,0x23,
+ 0xc5,0x85,0x2d,0xa1,0xa2,0x94,0xc2,0x43,0x4d,0x49,
+ 0x92,0x74,0x7e,0x24,0x92,0x95,0xf3,0x99,0x9d,0xd6,
+ 0x18,0xe6,0xcf,0x9c,0x45,0xff,0x89,0x08,0x40,0x2a,
+ 0x0e,0xa0,0x28,0xf9,0x83,0xfe,0xc1,0xe6,0x40,0xa8,
+ 0xe2,0x29,0xc9,0xb0,0xe8,0x9a,0x17,0xb2,0x23,0x7e,
+ 0xf4,0x32,0x08,0xc9,0x83,0xb2,0x15,0xb8,0xc5,0xc9,
+ 0x03,0xd1,0x9d,0xda,0x3e,0xa8,0xbf,0xd5,0xb7,0x7d,
+ 0x65,0x63,0x94,0x5d,0x5d,0x94,0xb4,0xcf,0x8d,0x07,
+ 0x0b,0x70,0x85,0x8e,0xce,0x03,0x0b,0x2a,0x8d,0xb3,
+ 0x3c,0x46,0xc0,0x2f,0xc7,0x72,0x6c,0x9c,0x5d,0x07,
+ 0x0f,0x45,0x3b,0x6b,0x66,0x32,0xab,0x17,0x83,0xd8,
+ 0x4c,0x2c,0x84,0x71,0x19,0x8f,0xaa,0x0a,0xff,0xbc,
+ 0xf7,0x42,0x10,0xe8,0xae,0x4d,0x26,0xaf,0xdd,0x06,
+ 0x33,0x29,0x66,0x21,0x5d,0xf5,0xae,0x17,0x07,0x1f,
+ 0x87,0x9e,0xae,0x27,0x1d,0xd5,0x02,0x81,0xc0,0x56,
+ 0x17,0x4f,0x9a,0x8a,0xf9,0xde,0x3e,0xe6,0x71,0x7d,
+ 0x94,0xb5,0xb0,0xc7,0xb8,0x62,0x12,0xd1,0x70,0xb4,
+ 0x00,0xf8,0x4a,0xdd,0x4f,0x1d,0x36,0xc2,0xe1,0xef,
+ 0xee,0x25,0x6a,0x00,0xc4,0x46,0xdf,0xbe,0xce,0x77,
+ 0x56,0x93,0x6d,0x25,0x5f,0xfe,0x5b,0xfb,0xe0,0xe2,
+ 0x37,0xcc,0xb9,0xac,0x4a,0xce,0x15,0x16,0xa0,0xc7,
+ 0x33,0x63,0xa4,0xaa,0xa5,0x1e,0x43,0xc1,0xda,0x43,
+ 0xfa,0x43,0x40,0x29,0x95,0x7c,0x2b,0x36,0x53,0xe7,
+ 0x7d,0x09,0x4d,0xd8,0x52,0xac,0x74,0x5f,0x08,0x81,
+ 0x21,0x5c,0x3a,0x5a,0xce,0xf3,0x25,0xb6,0x1e,0x21,
+ 0x76,0x4c,0x7c,0x71,0x50,0x71,0xaa,0x27,0x02,0x5b,
+ 0x23,0x06,0x0b,0x21,0x5b,0xc7,0x28,0xa3,0x3d,0x8d,
+ 0x25,0x9b,0x2a,0x2d,0x9d,0xa1,0x1c,0x1d,0xcb,0x7d,
+ 0x78,0xf8,0x06,0x7e,0x20,0x7f,0x24,0x2a,0x5c,0xa4,
+ 0x04,0xff,0x2a,0x68,0xe0,0xe6,0xa3,0xd8,0x6f,0x56,
+ 0x73,0xa1,0x3a,0x4e,0xc9,0x23,0xa1,0x87,0x22,0x6a,
+ 0x74,0x78,0x3f,0x44,0x1c,0x77,0x13,0xe5,0x51,0xef,
+ 0x89,0x00,0x3c,0x6a,0x4a,0x5a,0x8e,0xf5,0x30,0xa2,
+ 0x93,0x7e,0x92,0x9b,0x85,0x55,0xaf,0xfe,0x24,0xaf,
+ 0x57,0x02,0x81,0xc1,0x00,0xa4,0xc2,0x6a,0x59,0x45,
+ 0xea,0x71,0x7d,0x4c,0xaf,0xaf,0xd6,0x55,0x97,0x73,
+ 0xc5,0xa1,0x3c,0xf6,0x59,0x23,0xb6,0x1f,0x5e,0x9c,
+ 0x96,0x0f,0x97,0x66,0x82,0x91,0x48,0x36,0x70,0x02,
+ 0x67,0xde,0x34,0xa6,0x95,0x7b,0x51,0x43,0x66,0xa4,
+ 0x16,0x45,0x59,0x12,0xdb,0x35,0x19,0x4b,0xbf,0x1d,
+ 0xab,0xf3,0x3f,0xb4,0xb4,0x6f,0x66,0xb0,0x67,0xc6,
+ 0x77,0x2c,0x46,0xa8,0x03,0x64,0x9a,0x13,0x9d,0x40,
+ 0x22,0x56,0x76,0x1a,0x7c,0x1e,0xe2,0xda,0x7f,0x09,
+ 0xcf,0x10,0xe3,0xf2,0xf4,0x2a,0x3b,0x46,0xc7,0x61,
+ 0x9b,0xef,0x4a,0x18,0x60,0x8c,0x32,0x71,0xb9,0xdd,
+ 0xac,0xa0,0xc6,0x8d,0x3f,0xab,0xc3,0x21,0x2c,0xeb,
+ 0x91,0x8f,0xc7,0x43,0x0d,0x0c,0x67,0x9e,0xab,0xe6,
+ 0x8d,0xb6,0x2d,0x41,0xca,0x43,0xd8,0xcb,0x30,0xfb,
+ 0x3b,0x40,0x0d,0x10,0x9b,0xb1,0x55,0x93,0x73,0x8b,
+ 0x60,0xef,0xc0,0xee,0xc0,0xa6,0x7a,0x79,0x90,0xfd,
+ 0x4c,0x25,0xd4,0x4f,0x67,0xbe,0xf7,0x86,0x3c,0x5d,
+ 0x2b,0x7d,0x97,0x3d,0xa2,0x91,0xa5,0x06,0x69,0xf6,
+ 0x7a,0xb8,0x77,0xe6,0x70,0xa9,0xd8,0x86,0x4b,0xa6,
+ 0xcf,0x67,0x1d,0x33,0xcf,0xfe,0x3e
+};
+
static unsigned char test4096[]={
0x30,0x82,0x09,0x29,0x02,0x01,0x00,0x02,0x82,0x02,
0x01,0x00,0xc0,0x71,0xac,0x1a,0x13,0x88,0x82,0x43,
@@ -516,3 +696,1315 @@ static unsigned char test4096[]={
0xab,0x2e,0xdb,0xeb,0x8f,0xff,0xdb,0xb0,0xc6,0x55,
0xaf,0xf8,0x2a,0x91,0x9d,0x50,0x44,0x21,0x17,
};
+
+static unsigned char test7680[]={
+ 0x30,0x82,0x11,0x09,0x02,0x01,0x00,0x02,0x82,0x03,
+ 0xc1,0x00,0xe3,0x27,0x46,0x99,0xb5,0x17,0xab,0xfa,
+ 0x65,0x05,0x7a,0x06,0x81,0x14,0xce,0x43,0x21,0x49,
+ 0x0f,0x08,0xf1,0x70,0xb4,0xc1,0x10,0xd1,0x87,0xf8,
+ 0x29,0x91,0x36,0x66,0x2d,0xbe,0x7b,0x1d,0xa2,0x0b,
+ 0x20,0x38,0xd9,0x8e,0x78,0x27,0xcf,0xb5,0x45,0x58,
+ 0x3d,0xf4,0xda,0xf0,0xdc,0x21,0x17,0x52,0xcd,0x68,
+ 0xe2,0x81,0xac,0x88,0x61,0x10,0xbc,0xb0,0x7f,0xe4,
+ 0xf3,0x78,0xb7,0x28,0x6c,0x5f,0x5c,0xc2,0x8d,0x3d,
+ 0xb0,0x87,0x41,0x15,0x2e,0x09,0x5f,0xea,0x06,0x7f,
+ 0xe9,0x35,0x18,0x90,0x50,0xad,0xf6,0xb9,0xfd,0x33,
+ 0x02,0x1a,0x99,0x9e,0xa5,0x7d,0x2c,0x3b,0x24,0xe7,
+ 0x31,0x35,0x73,0x9a,0xb0,0xfe,0x03,0xfc,0xc6,0x98,
+ 0x78,0xd9,0x66,0x95,0xa5,0x12,0xbc,0x1e,0x82,0xbc,
+ 0xf1,0xc5,0x31,0xcd,0xa6,0xb1,0x0c,0x02,0xbf,0x7f,
+ 0xb7,0xaf,0x5f,0xd6,0xed,0xf7,0xc1,0x59,0x86,0x3a,
+ 0x35,0x95,0x54,0x21,0x8d,0x6a,0xb3,0xd1,0x2b,0x71,
+ 0xf5,0xf1,0x66,0x00,0xb1,0x88,0xee,0x3b,0xa4,0x41,
+ 0x52,0x1a,0xf5,0x0e,0x32,0xb6,0xbf,0x52,0xab,0x51,
+ 0x55,0x91,0x32,0x4f,0xaf,0x91,0xac,0xf7,0xff,0x8e,
+ 0x3b,0x2b,0x61,0xe9,0x6d,0x1d,0x68,0x80,0x90,0x79,
+ 0x34,0x96,0xca,0x49,0x43,0x7c,0x89,0x4e,0x5e,0x31,
+ 0xb5,0xce,0x01,0x9b,0x09,0xaf,0x92,0x06,0x24,0xe7,
+ 0x22,0x35,0xcc,0xa2,0x0b,0xfb,0x5b,0x87,0x65,0x71,
+ 0xff,0x64,0x3e,0xf9,0xe8,0x33,0xa0,0xc3,0x4e,0xb2,
+ 0x41,0x98,0x54,0xeb,0x13,0x99,0xfb,0x32,0x78,0x7e,
+ 0xda,0x4f,0xd3,0x46,0x6a,0xb5,0x78,0x81,0x3f,0x04,
+ 0x13,0x5f,0x67,0xaf,0x88,0xa5,0x9e,0x0d,0xc5,0xf3,
+ 0xe7,0x4c,0x51,0xf5,0x51,0x4a,0xa4,0x58,0x64,0xd9,
+ 0xa2,0x32,0x54,0x36,0xce,0x38,0xd8,0xc2,0x0e,0x0d,
+ 0x60,0x8e,0x32,0x7f,0x90,0x8a,0xbc,0x88,0xbe,0x6a,
+ 0xc0,0x47,0x0f,0x02,0x41,0xff,0x3b,0x7e,0xc5,0xa6,
+ 0x33,0x1d,0x19,0xd1,0xd5,0x67,0x6c,0xbf,0x16,0xb0,
+ 0x7e,0x80,0x10,0xbf,0x7f,0xdd,0xd0,0xf4,0xc3,0x94,
+ 0x2c,0x9a,0x2c,0xda,0x69,0x4e,0xd6,0x7b,0x40,0x4d,
+ 0x2a,0x27,0xcb,0x5a,0xe5,0x2d,0x3f,0x7d,0x51,0x9d,
+ 0x9f,0x70,0xde,0x50,0xb1,0xd3,0xd2,0x38,0x4d,0x1c,
+ 0xca,0xc2,0x1e,0x80,0xd0,0x36,0x82,0x04,0xe6,0x17,
+ 0x79,0x9f,0x2e,0xc9,0xed,0x2b,0xd5,0x1b,0xfa,0x7d,
+ 0x1a,0x80,0xb5,0x0e,0x2f,0x05,0xbe,0x4a,0x1b,0xfe,
+ 0x0a,0xad,0x01,0xde,0x91,0xc8,0xf9,0x81,0xbe,0xc7,
+ 0xaf,0xe7,0x87,0xed,0x9d,0xb8,0x6c,0xad,0x65,0xed,
+ 0x5e,0xd3,0x67,0x8c,0x62,0x3a,0xe7,0xfd,0x67,0xe0,
+ 0xbb,0x57,0xaf,0x56,0xeb,0x4a,0x58,0x6e,0xad,0xf2,
+ 0xbe,0xc3,0x70,0x29,0xf8,0xeb,0x68,0x45,0xa0,0xbd,
+ 0xcd,0xa5,0xb4,0xd9,0x01,0xb7,0x44,0xeb,0x97,0xf3,
+ 0x0c,0x56,0xe4,0x26,0xd0,0xa5,0xb1,0xa3,0x49,0x6e,
+ 0x88,0xf2,0x22,0xe2,0x7b,0x58,0x3a,0xd9,0x52,0xa4,
+ 0xb1,0x4c,0x5c,0x7c,0xf0,0x88,0x7b,0x9f,0x06,0xe9,
+ 0x32,0x4e,0xf2,0x64,0x83,0x8b,0xa2,0xea,0x1d,0x25,
+ 0xf1,0x8d,0x16,0x8b,0xe0,0xab,0xd2,0xe9,0xe4,0x6b,
+ 0x7d,0x76,0x98,0x22,0x53,0x31,0x6b,0xcc,0xf1,0xe5,
+ 0x1d,0xd7,0xa5,0xb0,0xea,0x6b,0x38,0x14,0x0c,0x06,
+ 0x10,0x27,0xd8,0x33,0xf3,0x9a,0xae,0x94,0xdd,0x0b,
+ 0xb4,0x6d,0xe5,0x91,0xdd,0xf1,0x0f,0x27,0xa4,0x94,
+ 0x55,0xf0,0xde,0x07,0x29,0xe6,0x3f,0x26,0x19,0xa1,
+ 0xdd,0xd1,0x06,0x99,0xda,0x54,0x23,0x3c,0xf5,0x5c,
+ 0x2e,0x96,0xa9,0x21,0x23,0x25,0x2e,0x6f,0xf1,0xf9,
+ 0x11,0x54,0xe5,0x7b,0xb9,0x1f,0x11,0xe2,0x9e,0x6b,
+ 0x61,0x8b,0xa3,0x8b,0xc1,0x20,0x9b,0xfb,0x51,0xef,
+ 0xbb,0xb9,0xf6,0xaf,0x66,0xb3,0x2c,0x25,0xef,0x76,
+ 0xcb,0xbf,0x7a,0x93,0x2f,0xe1,0x17,0x56,0xc1,0x00,
+ 0x33,0xb5,0xd9,0x91,0x05,0x31,0xcc,0x72,0xcd,0x4a,
+ 0x93,0x9a,0xe3,0x21,0x42,0x9e,0xb8,0x4e,0x6c,0x27,
+ 0x93,0xf0,0x7f,0x22,0xdb,0xe5,0xb3,0xa3,0xf7,0xe7,
+ 0x80,0xbb,0x91,0xca,0xf7,0xe8,0x52,0xb8,0x11,0x64,
+ 0x66,0x25,0x94,0xf8,0x6f,0x0b,0x3b,0xb7,0xff,0x80,
+ 0x9e,0x36,0xe9,0x88,0x2e,0xab,0x05,0xbf,0x99,0x9f,
+ 0x2b,0x4f,0xc6,0xb1,0x13,0x5b,0x06,0xff,0x0a,0x7b,
+ 0xbc,0x7f,0x07,0xa0,0x35,0xc2,0x2d,0x44,0x3e,0xad,
+ 0x44,0xcb,0x47,0x18,0x26,0x71,0x7b,0x17,0xc9,0x6d,
+ 0xb5,0x4b,0xcf,0xdf,0x14,0x2c,0x6c,0xdf,0x21,0xce,
+ 0x93,0x49,0x34,0x69,0x49,0xfd,0x3e,0x71,0x5b,0xfa,
+ 0x07,0xc5,0x7e,0x5e,0x54,0x1a,0x3c,0xa6,0x29,0xb5,
+ 0xbf,0x0d,0xf1,0xc6,0xa4,0x61,0xd6,0x17,0x1d,0xf0,
+ 0xa2,0x78,0x8f,0xbc,0x7e,0x0c,0xb4,0xf0,0x1e,0x05,
+ 0xea,0xb5,0xad,0x68,0x95,0x0b,0x27,0xb4,0x29,0x7c,
+ 0x70,0x2a,0x9a,0x0a,0x39,0xd4,0x76,0xb7,0x72,0x30,
+ 0x5e,0xae,0x9c,0x4a,0x55,0xc7,0x46,0xd7,0x5f,0xbe,
+ 0x10,0x61,0x25,0x18,0x7a,0x9f,0xd3,0x05,0x3d,0x6f,
+ 0x9a,0x1e,0xec,0x2b,0x03,0xe0,0x49,0x6a,0x9c,0xd6,
+ 0xdb,0xc2,0xa1,0xe1,0x0a,0xbb,0x31,0x42,0xc8,0x43,
+ 0x4e,0x7c,0xa9,0x7c,0x60,0xea,0xbe,0xf1,0x8b,0xe8,
+ 0xb2,0x90,0x83,0x14,0x21,0xe4,0xb3,0x0d,0x7c,0x63,
+ 0x3c,0x98,0x55,0xc6,0x44,0xa6,0xa8,0x1e,0x42,0xb7,
+ 0x89,0xa8,0xbd,0xb8,0x34,0x3d,0x09,0x80,0x99,0x73,
+ 0x9f,0xaf,0x17,0x56,0xf2,0x73,0x3e,0x1e,0x6e,0xe9,
+ 0x18,0xa0,0x5b,0x69,0xce,0xfd,0x3d,0x77,0x81,0x95,
+ 0x3b,0xf1,0xde,0x26,0xe9,0x27,0xef,0x92,0x2a,0x97,
+ 0xdc,0x95,0xa5,0xa3,0xb0,0xfb,0x96,0x89,0x4f,0xe6,
+ 0xc1,0x42,0x0b,0xfd,0xb4,0x6d,0x0a,0x9f,0x9b,0x31,
+ 0xd8,0x21,0x38,0x8a,0xee,0xb6,0x5c,0x12,0xa8,0xb4,
+ 0x07,0x79,0x41,0xa7,0x7f,0x13,0x74,0xad,0x0b,0xee,
+ 0x28,0x52,0xac,0x2f,0x4d,0x30,0x1c,0xc5,0xa6,0xa5,
+ 0x61,0x42,0xbd,0xe1,0x4f,0xd3,0xec,0x66,0xf2,0x63,
+ 0xf4,0x93,0xdb,0x35,0x2d,0x3b,0x71,0x25,0x09,0xde,
+ 0xda,0x46,0xda,0xe2,0xa7,0xa3,0xdf,0xcd,0xbf,0x58,
+ 0x05,0x25,0x02,0x03,0x01,0x00,0x01,0x02,0x82,0x03,
+ 0xc0,0x5f,0xd5,0x15,0x1b,0x09,0xe4,0xa7,0xc0,0xa6,
+ 0xd8,0x0d,0xa8,0x2a,0xd3,0x1d,0x46,0x03,0x07,0xf0,
+ 0x98,0xe4,0x4b,0x99,0x66,0x8e,0x72,0xe7,0xbb,0x51,
+ 0xc6,0x1a,0xbe,0x36,0xf4,0x52,0xba,0xa8,0xbf,0xaa,
+ 0xe3,0x71,0x1d,0x83,0x21,0xc0,0xa6,0x88,0x4f,0xf7,
+ 0x2b,0x93,0x26,0xe4,0xa7,0xed,0x50,0x18,0xaa,0xf4,
+ 0x4c,0xa2,0xfe,0x92,0x7c,0xde,0x2e,0x54,0x76,0xc2,
+ 0x25,0x1e,0x98,0xa6,0x48,0x01,0x39,0x6f,0x1f,0x24,
+ 0x97,0x9b,0x64,0x95,0x1c,0x8d,0x63,0x8d,0x44,0x6f,
+ 0x9d,0xdf,0xf4,0x1a,0xa5,0x9a,0x1e,0xd3,0x6c,0xae,
+ 0xa9,0x8c,0x3f,0xfb,0x2f,0x78,0xf6,0xa6,0xd6,0x06,
+ 0xd3,0xb7,0x26,0xff,0x1e,0xdb,0x8d,0xcc,0x37,0x4d,
+ 0x5c,0xe2,0xc3,0xa5,0x75,0xe6,0xf9,0xb4,0x4c,0x84,
+ 0x6f,0x9e,0x58,0x55,0xc8,0x01,0xfa,0x32,0xd2,0x6e,
+ 0x2b,0x45,0xf2,0xc6,0x48,0xad,0x40,0xd8,0xb9,0x3c,
+ 0x1b,0xf8,0xf7,0x82,0xd3,0x0e,0x73,0xe3,0xb1,0x5b,
+ 0x82,0x71,0x77,0x3f,0x6f,0x36,0x9a,0xe0,0xec,0x51,
+ 0xf8,0x5f,0x84,0x92,0xee,0xb8,0x7e,0xe7,0x1a,0x14,
+ 0x50,0x82,0x7a,0x4d,0xe6,0xd6,0xa3,0x76,0x24,0x8a,
+ 0x5f,0xfe,0x19,0xdd,0xd7,0xf7,0x5b,0xae,0x18,0x04,
+ 0x90,0xcd,0x5c,0xe5,0x64,0xe8,0x04,0xb1,0x06,0xa5,
+ 0xdd,0xf8,0x9d,0x71,0x13,0xaa,0x36,0x7f,0x61,0x27,
+ 0xf4,0xac,0x95,0x7d,0x1a,0x99,0x7d,0xe0,0xd5,0x9c,
+ 0x5a,0xad,0x9a,0xff,0x54,0xb0,0xb1,0x55,0x45,0x2d,
+ 0x19,0x58,0x52,0x28,0xdd,0xe0,0xb5,0x65,0x52,0x97,
+ 0x45,0xf0,0x2b,0x98,0x1f,0x61,0x6c,0x9d,0xaa,0x59,
+ 0x85,0xf9,0x97,0x7b,0xbd,0xeb,0x95,0x81,0xfb,0x29,
+ 0x8c,0xf0,0x52,0xdf,0xed,0xee,0xb2,0x00,0x32,0x35,
+ 0x14,0xa8,0xa4,0xca,0x91,0xff,0x18,0xb7,0x96,0xfb,
+ 0x32,0x62,0xa9,0xa0,0xd0,0x77,0x43,0xf5,0x99,0xd1,
+ 0xee,0xe8,0xad,0x1a,0x2c,0xd4,0xeb,0xe1,0xf5,0x01,
+ 0x41,0x78,0xc0,0x27,0x19,0x50,0x2e,0xba,0x22,0xd1,
+ 0xeb,0xb3,0xa5,0x27,0x0b,0xec,0xf9,0x26,0x7e,0x1f,
+ 0xe7,0x17,0x9f,0x39,0xa8,0x72,0x22,0x63,0x79,0x6a,
+ 0x9c,0x89,0x55,0x9a,0xb4,0x61,0x41,0xbc,0xaa,0x14,
+ 0x37,0x29,0x03,0xc0,0x52,0x4e,0x31,0x44,0x8f,0x2e,
+ 0x17,0x81,0x88,0xf4,0xce,0xda,0x41,0xb8,0xd5,0x14,
+ 0x91,0x8c,0xca,0xd2,0x0d,0x99,0x06,0x09,0xc2,0xb7,
+ 0xe8,0xae,0xfa,0x01,0xea,0x99,0x62,0x68,0xb6,0xdf,
+ 0xc8,0x27,0xae,0xbf,0xb0,0x9b,0x5b,0x1a,0xa2,0xe2,
+ 0x5a,0x7a,0xe5,0x4b,0x92,0x1f,0xff,0x73,0xae,0x16,
+ 0x40,0x78,0x42,0x28,0xbb,0x13,0x5e,0xbc,0x71,0x7a,
+ 0x78,0x3e,0xd8,0x1b,0xc2,0x2c,0xd6,0xdc,0xfa,0x39,
+ 0x72,0xf8,0xa2,0x2c,0x8b,0x1c,0x5d,0xab,0xb8,0x07,
+ 0xc7,0xae,0x29,0x93,0x68,0xbf,0x61,0xe9,0xa4,0x37,
+ 0x83,0x7d,0x13,0xc7,0x18,0xf0,0x7d,0xa4,0x20,0x47,
+ 0x14,0x68,0x95,0x46,0x56,0x6d,0xd5,0x7b,0xe1,0x51,
+ 0x8f,0x96,0xc1,0x7b,0x35,0x09,0x7a,0x89,0x0e,0xdf,
+ 0x12,0xd5,0xe1,0x9c,0x2a,0x94,0x95,0x43,0x93,0x48,
+ 0xa6,0x23,0xe6,0xd8,0xf2,0xb8,0x0e,0xba,0x6d,0x61,
+ 0x03,0xaf,0x40,0x63,0x2b,0x2f,0xee,0x61,0x4c,0xc4,
+ 0x70,0x3d,0x78,0xc1,0x4f,0x8e,0x0b,0x9b,0x06,0x35,
+ 0x6d,0x6d,0x83,0x37,0xbb,0x39,0x7d,0x7f,0x33,0x93,
+ 0xc4,0xeb,0x8e,0xfc,0xda,0xf0,0x54,0xfe,0x1d,0xc4,
+ 0xd3,0x83,0x99,0xdf,0x65,0xee,0x00,0x7d,0x86,0x27,
+ 0xd4,0x3a,0x6b,0xe6,0x82,0x8e,0x58,0x2d,0x03,0x38,
+ 0xef,0x6c,0x82,0x87,0x18,0x3b,0x47,0xe7,0xbc,0xe1,
+ 0x58,0x70,0x4d,0x46,0x96,0x34,0x60,0x96,0x15,0x09,
+ 0x3c,0x84,0x40,0xaf,0x80,0x32,0x75,0xc7,0x23,0x6c,
+ 0xfb,0x1d,0x57,0x73,0x19,0x09,0xe8,0x1a,0x4c,0x02,
+ 0x5c,0x7e,0x4e,0xbe,0x75,0xf8,0x73,0xff,0x2d,0x54,
+ 0x19,0x55,0xf5,0xf4,0x1b,0xc9,0xbc,0xc2,0x19,0xcb,
+ 0xb7,0x4e,0x6a,0x0d,0xff,0xca,0x7d,0xd0,0x88,0x91,
+ 0x8b,0x9b,0x21,0xa4,0xa2,0x43,0x0d,0xbc,0x9e,0x73,
+ 0x7d,0x54,0x7d,0x95,0xcc,0x63,0x5e,0xc1,0xb8,0xe6,
+ 0x27,0xff,0x20,0x07,0xe8,0x6e,0x7e,0xf2,0x0f,0x5a,
+ 0x09,0xef,0xe5,0x4d,0x80,0x39,0x95,0xd5,0xf4,0xee,
+ 0x3b,0xca,0x7c,0x73,0xf8,0x39,0x5a,0xc1,0x1d,0x7d,
+ 0x94,0x72,0x32,0xad,0x58,0xe2,0xfc,0x71,0x6e,0x66,
+ 0xaa,0xa1,0x59,0xd6,0xac,0xab,0xbe,0x8c,0x53,0x99,
+ 0xcd,0xe8,0x2d,0xb5,0xb3,0x46,0x58,0x2e,0x16,0xd7,
+ 0x4d,0x8b,0x7d,0x4a,0xb1,0x4c,0x85,0x91,0x1b,0x57,
+ 0x54,0xf8,0x14,0x59,0xdb,0xc4,0x2c,0x9c,0x08,0x6d,
+ 0x3d,0xd7,0xf6,0xa6,0xe6,0xb3,0x2a,0xe7,0x29,0x1c,
+ 0xab,0xb4,0xed,0x13,0x19,0xf8,0xb6,0x60,0x92,0x44,
+ 0x53,0xd4,0xa9,0x7e,0xba,0x21,0xa2,0xdc,0x6e,0xa5,
+ 0x5e,0x53,0x59,0x3c,0x52,0x61,0x7b,0x5f,0x19,0xad,
+ 0xc8,0x6d,0x68,0x8d,0x7a,0xc9,0xd6,0xef,0xeb,0x67,
+ 0x4f,0xca,0xe7,0xf6,0x29,0x36,0x97,0xfb,0x3e,0x37,
+ 0x95,0x85,0x71,0x70,0xf6,0x63,0x86,0x2a,0x29,0xd7,
+ 0x9a,0x96,0x76,0xa7,0x47,0x98,0x4e,0x06,0x31,0xaf,
+ 0xf3,0x4f,0x2a,0x65,0x90,0x6a,0x4b,0x8e,0x43,0x79,
+ 0xe2,0xdd,0xce,0x08,0x1c,0x01,0xec,0x38,0x41,0xdd,
+ 0x19,0xd8,0xf3,0x36,0x03,0x35,0x03,0xaf,0x1c,0x45,
+ 0x3c,0xac,0x13,0xaa,0x36,0x16,0x48,0x77,0xb3,0xbe,
+ 0xa3,0xb3,0x9d,0x7f,0x20,0xca,0x74,0x65,0xac,0x93,
+ 0xa7,0x54,0xad,0xc8,0x68,0x0e,0xf8,0x44,0x1f,0xad,
+ 0x2c,0xb7,0x9a,0x9a,0x07,0xe5,0xcd,0x87,0xe0,0x14,
+ 0xb5,0xaf,0xd3,0xd7,0xcf,0x13,0x9f,0x3b,0xbd,0xfe,
+ 0x29,0x0b,0x72,0xf5,0x4c,0x54,0x94,0xc7,0x66,0xec,
+ 0xa8,0x41,0x96,0x3d,0x17,0xed,0x19,0xc0,0x82,0x3e,
+ 0x5f,0x9a,0x91,0xfe,0xd1,0x2f,0xb8,0x94,0xaa,0x58,
+ 0x68,0x95,0x31,0x87,0x57,0x9a,0x75,0x94,0x4d,0x38,
+ 0x7d,0x56,0x82,0x81,0x9c,0xb9,0x34,0x2b,0xe7,0x40,
+ 0xd9,0x3c,0x77,0x5b,0x95,0x51,0x06,0x11,0x41,0xe3,
+ 0x8b,0xb7,0x32,0xeb,0xe1,0x05,0x1b,0x10,0xa8,0x0e,
+ 0xa1,0x02,0x82,0x01,0xe1,0x00,0xfa,0x38,0x34,0xfe,
+ 0x55,0x87,0x71,0x62,0x47,0x00,0x33,0x64,0x67,0x70,
+ 0x79,0x76,0xdf,0xfe,0xc3,0x28,0x38,0xdf,0x90,0xd4,
+ 0xc0,0xee,0x98,0xbf,0x9d,0x9b,0x85,0xd8,0x61,0x65,
+ 0xa5,0x70,0xf5,0xd2,0x2c,0xbf,0x2f,0xb5,0x55,0x79,
+ 0x92,0x13,0xba,0x4d,0x3c,0x39,0xbf,0xd5,0x31,0x13,
+ 0x7a,0x31,0xf4,0x8b,0xce,0xf8,0xd0,0xd3,0x9b,0xe2,
+ 0xee,0x31,0xdb,0xba,0xcc,0x1a,0xba,0x1c,0x8d,0xee,
+ 0xea,0xcb,0xd3,0x5a,0xad,0x87,0xd6,0xf9,0x15,0x2f,
+ 0x6e,0x00,0x06,0x74,0x25,0x8d,0xff,0xc8,0xa6,0x11,
+ 0x1c,0xe8,0x16,0x1a,0xde,0x53,0x05,0xb9,0x53,0x55,
+ 0x28,0x83,0x3d,0xbe,0x61,0x0c,0xc4,0x98,0x7d,0xf6,
+ 0xec,0x36,0xc3,0xe5,0xe7,0x1d,0x14,0x64,0xcb,0x0d,
+ 0x62,0x5d,0x7a,0xcd,0x88,0xfc,0x66,0x4e,0xf9,0x36,
+ 0x47,0x95,0x18,0x3a,0x48,0x2a,0xff,0x62,0x8f,0x6c,
+ 0xe2,0xc2,0xe9,0xd3,0x6a,0x45,0x5c,0xf5,0x89,0x53,
+ 0x5c,0xbe,0xcf,0xad,0x87,0x22,0x9c,0x31,0x48,0xdb,
+ 0xd8,0xe4,0xe5,0x38,0xae,0xc2,0xb0,0xd2,0xba,0xb7,
+ 0x30,0x53,0x2d,0xb1,0x35,0xf1,0x58,0x0f,0x8a,0x06,
+ 0x51,0x76,0xb9,0x2c,0x32,0xe0,0xd1,0xaa,0x82,0x34,
+ 0x69,0x71,0x1c,0x5f,0x35,0xa8,0x9d,0x11,0xac,0x13,
+ 0xdb,0x7b,0xf6,0x93,0xe3,0xb9,0xbd,0xd9,0xb2,0x86,
+ 0xff,0x61,0x88,0x2b,0x72,0x5c,0x84,0xe1,0x0c,0x72,
+ 0xab,0x44,0xff,0x23,0x13,0xaf,0xd1,0x5a,0xd3,0xea,
+ 0x73,0xfe,0xd5,0xa4,0x7d,0x9e,0x4e,0xac,0x03,0x93,
+ 0x72,0x14,0x2d,0x96,0x6f,0xee,0xb4,0xcd,0x4e,0xab,
+ 0xea,0x71,0x93,0x81,0xe0,0x3d,0xcd,0x61,0x96,0x25,
+ 0x76,0xbd,0xc4,0xb5,0xdd,0x7c,0xf1,0xb9,0xe1,0x2c,
+ 0x58,0x1b,0xa4,0x46,0x4b,0x12,0x57,0x58,0xaa,0x3a,
+ 0xae,0x89,0xa3,0xb3,0xcf,0x1f,0x8d,0x67,0xdf,0x6d,
+ 0x7e,0x8e,0xfa,0xc5,0x09,0x73,0x46,0x56,0x55,0x90,
+ 0xeb,0x77,0x4e,0x16,0x4f,0x68,0x7b,0x1f,0x61,0x23,
+ 0xec,0xa9,0x71,0x30,0x33,0x25,0xc7,0x4e,0x26,0x2e,
+ 0x4e,0x2b,0xc2,0x64,0x5f,0xf5,0x8f,0x7a,0x4b,0x1c,
+ 0x06,0xb3,0x91,0xf6,0x9b,0x51,0xb7,0xb0,0x64,0x72,
+ 0x04,0xe5,0xfa,0x14,0x2f,0xed,0x61,0x29,0x03,0x73,
+ 0x19,0x15,0x6e,0x2c,0x8b,0x0e,0xec,0x4d,0xf1,0xe3,
+ 0x6f,0x58,0x7c,0xc9,0x48,0x67,0x3f,0x51,0xb5,0xb7,
+ 0x26,0x46,0xa7,0x25,0x79,0x55,0xfe,0x3a,0x44,0xb4,
+ 0x44,0xfc,0xb8,0x14,0x34,0x47,0xd7,0xa3,0x0e,0x76,
+ 0xe7,0x83,0x9a,0x02,0xc3,0xcf,0x2b,0xd9,0x83,0x93,
+ 0xd5,0xee,0x99,0x74,0x45,0x62,0x23,0xa6,0x02,0xc9,
+ 0xc0,0x10,0x70,0x0a,0x99,0x29,0x0c,0x79,0x04,0x4c,
+ 0x77,0x21,0x96,0xf0,0xa5,0x17,0x22,0xbe,0xab,0x9b,
+ 0xd7,0x42,0xd3,0xe9,0xc0,0x42,0x44,0x7d,0x9d,0xc9,
+ 0x3d,0xf9,0x36,0x97,0x1b,0x75,0x52,0x8f,0xe9,0xb9,
+ 0x8c,0xa7,0x64,0x19,0x5b,0x5d,0x60,0xb4,0x42,0x95,
+ 0xc9,0xdb,0x82,0x03,0xc6,0xb0,0x28,0x72,0x64,0x03,
+ 0x41,0x4d,0x8f,0xc6,0xd0,0xcd,0x02,0x82,0x01,0xe1,
+ 0x00,0xe8,0x66,0xa7,0xf9,0x0f,0x5a,0x21,0xfc,0x88,
+ 0x4e,0x91,0xd5,0x4a,0xf0,0xf4,0x32,0xe5,0x0d,0xf3,
+ 0x06,0x95,0xd0,0x4e,0x47,0x0c,0x04,0x66,0x77,0xfd,
+ 0xb8,0x93,0x0d,0xff,0x8f,0x97,0xa0,0x4a,0x36,0x37,
+ 0xa6,0x5e,0x95,0x79,0xc8,0xb2,0x21,0x98,0x81,0xf1,
+ 0xb8,0xf4,0x52,0xaf,0x3c,0x8c,0x86,0x85,0x55,0x56,
+ 0xfc,0x90,0xe3,0x32,0x50,0x7c,0x54,0x07,0x9e,0xed,
+ 0xfc,0xd4,0xb9,0x5c,0x98,0x22,0xfb,0x72,0xd7,0x83,
+ 0xf0,0xd1,0x61,0x10,0xbd,0x68,0x5d,0x72,0xc1,0xce,
+ 0x92,0x43,0x77,0x9f,0xb8,0x8d,0x8e,0xf2,0xe3,0x62,
+ 0x4a,0x93,0x03,0xd3,0xd9,0x01,0xa8,0x99,0x6f,0xa3,
+ 0x4c,0x6d,0x7a,0xf2,0x9e,0x8e,0x6b,0xbc,0xe4,0x9d,
+ 0x8e,0xe7,0x25,0x86,0xa4,0xa9,0xc2,0xef,0xdf,0xbb,
+ 0x6e,0x3d,0x4b,0x57,0x95,0x81,0x6f,0x68,0x3f,0x19,
+ 0xa8,0xff,0x5a,0x08,0x7a,0xe4,0x4c,0x4e,0xb4,0xea,
+ 0xf4,0xc8,0x2f,0xef,0x8c,0x5e,0xcd,0x62,0x1c,0x8c,
+ 0x93,0x60,0x5d,0xa3,0x11,0x64,0x0b,0xeb,0x6d,0x21,
+ 0xbc,0x3a,0x5b,0x5c,0x0c,0xa7,0x8a,0xc6,0xa8,0xe1,
+ 0x48,0x81,0x01,0xb5,0x65,0xab,0x2e,0xbe,0x38,0x94,
+ 0xf7,0xa6,0x33,0xc1,0x6e,0x0b,0x88,0x38,0xe7,0x1b,
+ 0x04,0x9a,0x10,0x2d,0x1d,0x3f,0x5f,0x5f,0xc8,0xef,
+ 0xcd,0xc5,0x16,0xdc,0x84,0xc0,0x66,0xe0,0xa3,0xfc,
+ 0xfa,0x96,0xc7,0xb7,0xec,0x4f,0x40,0x0a,0xc5,0xbe,
+ 0x6d,0x39,0x4a,0x7e,0x91,0x4f,0xe1,0x03,0xd2,0x39,
+ 0xbc,0x87,0x69,0xa1,0xf0,0x6d,0x11,0xf5,0xb4,0x9d,
+ 0xae,0x76,0x6b,0xc6,0xbf,0xe4,0x47,0xbc,0x4d,0x13,
+ 0x88,0xa8,0x83,0xf5,0xae,0x1d,0xfb,0x4d,0x4c,0x44,
+ 0x03,0xd8,0xa4,0x2e,0x4d,0xf8,0x5f,0x45,0x94,0x58,
+ 0xd7,0xd9,0x4b,0x47,0xd8,0xfc,0x35,0x05,0xed,0xb4,
+ 0xb6,0xc2,0x36,0x2e,0xba,0xd2,0x7a,0xba,0x69,0x34,
+ 0xbf,0xf1,0xa1,0x5e,0x17,0x71,0x89,0xd3,0x54,0x57,
+ 0x05,0x2b,0x82,0xe3,0x0a,0x64,0x5c,0x3b,0x8c,0x6b,
+ 0xc7,0x10,0x8a,0xb5,0xd3,0xd7,0x90,0xeb,0xdb,0x1d,
+ 0xa0,0xbf,0x6b,0xea,0xcd,0x31,0x7a,0x8d,0x64,0xcc,
+ 0x58,0xc0,0x07,0xa4,0x6e,0x14,0x0b,0xf3,0xea,0x3e,
+ 0x87,0x9f,0x7c,0xb8,0x1c,0x22,0x26,0x8a,0x7d,0x90,
+ 0xdd,0x57,0x28,0x38,0xcc,0x0e,0x71,0x92,0x89,0xee,
+ 0x79,0x88,0xbc,0x05,0x21,0xda,0x42,0x92,0x52,0x66,
+ 0xac,0x4a,0xe5,0xf5,0x6e,0x47,0xd5,0xba,0x37,0xd3,
+ 0x7c,0x89,0xd4,0xd8,0x6f,0xde,0x63,0x44,0xb5,0x88,
+ 0xdd,0xb1,0x30,0xb4,0x6d,0xcd,0xbf,0xc8,0x34,0x27,
+ 0x59,0x7d,0x79,0xdc,0x96,0x5b,0x8e,0xc0,0x87,0xc0,
+ 0x4e,0x40,0x07,0x13,0x91,0x6b,0x3a,0x12,0x03,0x64,
+ 0x70,0xaf,0x80,0x24,0x1c,0x5c,0xfb,0xf5,0xc0,0x74,
+ 0x5e,0xaf,0x06,0x18,0x04,0x67,0x4a,0xbd,0xac,0xd7,
+ 0xca,0xbe,0x4e,0xa1,0x19,0x48,0x7d,0xa6,0x59,0xf6,
+ 0x1a,0x62,0x50,0x53,0x46,0xa4,0x5b,0x9c,0x5a,0xfd,
+ 0x89,0x9d,0xd4,0xde,0xf4,0xa7,0x3d,0x88,0x73,0xa5,
+ 0xb9,0x02,0x82,0x01,0xe1,0x00,0xe7,0x70,0x59,0xc3,
+ 0xed,0xc4,0x6b,0xa1,0xa5,0x5e,0x90,0x2a,0x8c,0x6a,
+ 0xc2,0x4e,0xab,0xfc,0xee,0xf2,0x23,0x38,0xd6,0xb3,
+ 0x93,0x08,0x9e,0x0c,0x8e,0x71,0x2d,0xa9,0xe8,0xdc,
+ 0xa5,0xdc,0x07,0xe3,0xb1,0x33,0xdd,0xa2,0xf2,0x3e,
+ 0x92,0x58,0xe0,0xf7,0x53,0x7f,0x6e,0xea,0x78,0x8c,
+ 0x35,0x78,0x43,0x63,0x95,0xbb,0x1b,0x1c,0xbf,0x91,
+ 0x75,0x14,0x74,0xd3,0x20,0xba,0x8f,0xee,0x9d,0x71,
+ 0xa1,0x87,0x8a,0x24,0xd3,0x61,0x53,0xfb,0xec,0x16,
+ 0x84,0xbe,0x4d,0x39,0xdd,0x0a,0xac,0xce,0x20,0x9c,
+ 0xaf,0x8a,0x13,0xf8,0x22,0x2f,0xd4,0x99,0x88,0x74,
+ 0xba,0x16,0x3a,0x63,0xff,0x4c,0x5a,0x03,0x5a,0x6f,
+ 0xac,0x29,0x33,0xa5,0x50,0xd1,0xda,0xed,0x27,0xcb,
+ 0x67,0x72,0x63,0x85,0xfc,0xf0,0xc8,0x88,0xbf,0x85,
+ 0xef,0x4b,0xfe,0xae,0xd9,0xd5,0xbb,0x86,0xa4,0x76,
+ 0xe8,0x7f,0xb4,0xdb,0xb1,0xee,0x1a,0x7f,0x99,0xd7,
+ 0x9b,0x6f,0x7a,0x94,0x5c,0xec,0x2c,0x60,0x81,0xad,
+ 0xa7,0xbe,0x80,0x2e,0x9f,0xa6,0xc0,0xfb,0x09,0x6d,
+ 0x2b,0xab,0xa4,0x15,0xc7,0x79,0x46,0x24,0x89,0x5c,
+ 0x32,0xb9,0x87,0xa9,0x54,0x1e,0x12,0x90,0x8e,0x02,
+ 0x80,0x8c,0xf8,0xdb,0x2f,0xbc,0x98,0x1b,0xa2,0x78,
+ 0x73,0x89,0x03,0x97,0xe3,0x09,0x08,0x8b,0x75,0xcf,
+ 0xdc,0x23,0x90,0x59,0xef,0x5b,0x98,0x24,0xb8,0xe8,
+ 0xcf,0x75,0xf0,0x2f,0xb7,0xa3,0xe6,0x17,0x06,0xf0,
+ 0x52,0xfe,0x21,0x0a,0x16,0x8e,0xf8,0xe1,0xae,0x25,
+ 0x11,0x5d,0x8c,0x95,0x1b,0x4f,0x45,0xb8,0xa8,0xcd,
+ 0xe6,0xf9,0xca,0xa0,0x54,0x93,0x95,0x86,0x6f,0xe4,
+ 0x93,0x22,0x0f,0xf2,0xcf,0xbd,0x23,0xb0,0xf4,0x8f,
+ 0x99,0xa7,0x67,0x99,0x05,0x13,0x1f,0xeb,0x88,0xf8,
+ 0xe2,0x3b,0xb9,0x49,0x35,0x89,0x4f,0xb8,0x06,0x37,
+ 0x36,0xda,0x75,0x25,0x0f,0x0a,0xaa,0xc2,0x6c,0x3e,
+ 0xb1,0x2d,0x16,0xf3,0x17,0xdb,0xe2,0x16,0x32,0x39,
+ 0x92,0x4b,0x5f,0xc0,0x5f,0x6e,0xd0,0x1c,0x7e,0xc0,
+ 0x51,0xd9,0xb3,0xe2,0x37,0xc7,0xe0,0x40,0x13,0x7d,
+ 0x06,0xcd,0xcd,0x72,0xb6,0x53,0x2d,0x7e,0x60,0x49,
+ 0xfe,0x31,0xe1,0xd0,0x0e,0x4c,0x98,0x93,0xe0,0xf6,
+ 0xf2,0xfa,0x99,0x7f,0x65,0xd8,0x15,0xc6,0x3a,0xb8,
+ 0x4d,0x63,0x21,0x78,0xe4,0x19,0x6b,0xbd,0xde,0x40,
+ 0x5b,0x8c,0xfa,0x49,0x75,0x23,0x8f,0x14,0xc2,0x3b,
+ 0xa3,0x9b,0xc5,0x80,0x1a,0xa3,0x60,0xd7,0x17,0x27,
+ 0xf0,0x18,0x0f,0xba,0x02,0xf7,0x7a,0xed,0xa4,0x00,
+ 0x77,0xde,0x4b,0xdd,0xf9,0xd7,0x3e,0x75,0xed,0x1a,
+ 0x43,0x26,0x71,0x1b,0xbc,0x72,0xf5,0x70,0x72,0x03,
+ 0x70,0x25,0x87,0x81,0x6a,0x92,0x2d,0xb7,0x02,0xf0,
+ 0x10,0x79,0x65,0x9d,0x4e,0x11,0x7d,0x5c,0x5b,0x37,
+ 0xaa,0xb4,0xfa,0x43,0x66,0x48,0x6c,0x67,0x64,0x9e,
+ 0x15,0x75,0x36,0xe7,0x25,0x55,0x07,0x7f,0x74,0x1f,
+ 0x2c,0x28,0x76,0xe7,0x9b,0x3d,0x91,0x0b,0xcd,0x6a,
+ 0x1d,0x5a,0xea,0x63,0xd0,0xf9,0x02,0x82,0x01,0xe0,
+ 0x3e,0x31,0xf2,0xf4,0x29,0x92,0xa2,0x93,0xd5,0xda,
+ 0xc9,0x16,0x7e,0xf6,0xdb,0x33,0x9f,0xaf,0x4b,0x01,
+ 0xd1,0x28,0x2d,0x3a,0xc0,0x51,0x91,0x26,0xbd,0xa5,
+ 0x1e,0xdd,0xd9,0x2e,0x11,0x93,0x19,0x29,0x47,0x5d,
+ 0x63,0xe4,0xb6,0xf1,0xea,0x12,0x29,0xa1,0x65,0x12,
+ 0x6d,0x78,0x8f,0x63,0x31,0xec,0x72,0x54,0x73,0x72,
+ 0x26,0x48,0x57,0x57,0xc8,0xde,0x28,0x27,0xf5,0x62,
+ 0xfb,0x7f,0x1b,0xf3,0xaf,0x31,0x01,0xfc,0x01,0x58,
+ 0x7a,0x80,0x72,0x9d,0x6e,0x07,0xcc,0x45,0x67,0xc6,
+ 0x26,0xfe,0x25,0xa5,0x9b,0x64,0xcd,0x45,0xe3,0x31,
+ 0x38,0x05,0x07,0x36,0x05,0x46,0x9c,0xc1,0x8e,0xbf,
+ 0x4e,0x71,0x5f,0xea,0xe5,0x0c,0x9a,0x41,0xc8,0x94,
+ 0xcc,0xf1,0x73,0x06,0x30,0x54,0x76,0x23,0xb7,0x22,
+ 0x7a,0x8e,0xe6,0x42,0xa1,0xa0,0x32,0x12,0xe9,0x08,
+ 0x1c,0x46,0x79,0x0c,0x82,0x7a,0x95,0x79,0xbf,0x83,
+ 0x80,0xeb,0xab,0x3d,0x32,0xc5,0xde,0x62,0xeb,0x90,
+ 0x29,0x73,0x05,0xc8,0x0a,0xb1,0x51,0xf1,0x23,0xdd,
+ 0x1e,0xf5,0x02,0x3e,0x74,0xbc,0x24,0x0c,0x60,0x36,
+ 0x2a,0x28,0x4d,0xe6,0x86,0x98,0x7c,0xd9,0xe1,0xac,
+ 0x21,0x33,0xaa,0xa9,0x8b,0xb6,0x8a,0x1b,0xf7,0x54,
+ 0x14,0xf3,0x0d,0x4f,0xcd,0x7c,0xf5,0xc2,0x6d,0xc2,
+ 0xf0,0xe2,0xfc,0x63,0x1e,0xa6,0xa9,0xa9,0xd9,0x73,
+ 0x2a,0xd5,0x0a,0x38,0xd8,0xc0,0xb7,0xe1,0x51,0xe4,
+ 0x23,0x37,0xf7,0x85,0x66,0x0e,0x3f,0x1a,0x8c,0xcf,
+ 0x12,0xa2,0x47,0x6f,0x73,0x91,0x21,0xe3,0x93,0x6b,
+ 0x74,0x4f,0xc5,0xa1,0xe7,0x32,0xf7,0x86,0xdd,0x1a,
+ 0x6e,0x96,0xda,0x32,0x1d,0xdd,0xfa,0x42,0xd5,0xd4,
+ 0xfd,0xae,0x7a,0xa1,0xed,0x3d,0x79,0xfe,0x88,0x84,
+ 0x43,0xa7,0xec,0xf3,0x7a,0x13,0xaa,0xa1,0x82,0x02,
+ 0x83,0x19,0x43,0x0a,0x46,0x78,0x07,0xd9,0x4d,0xff,
+ 0xac,0x67,0xd6,0x29,0x89,0xfe,0x2b,0xab,0x5f,0x9a,
+ 0x87,0x99,0x80,0xaf,0x70,0x4a,0x6a,0xb9,0x5a,0xc2,
+ 0xac,0x7f,0xa2,0xc7,0xad,0xe2,0x1f,0xec,0xc5,0x12,
+ 0x17,0x08,0x87,0x8f,0x20,0x95,0xbe,0xaf,0x62,0x2c,
+ 0xc2,0x3f,0x89,0x56,0xd8,0x50,0x96,0x97,0x72,0xe2,
+ 0x92,0xe1,0x2a,0xd8,0x84,0x9f,0x31,0xe3,0x06,0xd8,
+ 0xe5,0x91,0x63,0x19,0xe1,0x27,0xad,0xe2,0xf2,0x0a,
+ 0x5e,0x78,0x8b,0x1b,0x13,0x31,0x4b,0xbd,0x77,0xb2,
+ 0xd6,0x5c,0x92,0x81,0x50,0x02,0x37,0xd2,0xe6,0xeb,
+ 0x66,0x6b,0xaa,0xfc,0xcd,0x54,0x5d,0xb8,0x03,0x87,
+ 0xe8,0xfa,0xb2,0xde,0xcb,0xf8,0x6e,0x58,0xde,0xcb,
+ 0x09,0x54,0x8a,0x9f,0x46,0xa3,0x7e,0x8d,0x15,0xff,
+ 0x1b,0x0d,0x89,0xc4,0x1a,0x21,0x31,0x5e,0xed,0x0b,
+ 0x67,0x3c,0x70,0xed,0x92,0x48,0xef,0xec,0xf0,0x77,
+ 0xc2,0x79,0x6c,0x06,0x09,0xaa,0xab,0xf6,0x4c,0xcd,
+ 0xfa,0x7e,0x4a,0x88,0xdc,0xa8,0x9b,0xd3,0x69,0x94,
+ 0x88,0x09,0x1d,0x30,0x43,0x9e,0x2c,0xcb,0x01,0x1d,
+ 0x4a,0x3b,0x04,0xec,0x0e,0xb1,0xde,0x09,0xad,0x29,
+ 0x02,0x82,0x01,0xe1,0x00,0x9f,0x02,0x13,0x7a,0xd0,
+ 0xa9,0x8a,0x7a,0xa0,0x05,0xbb,0x44,0x6f,0xaf,0xf7,
+ 0xe3,0xd4,0x35,0xef,0x73,0x39,0xd5,0xe0,0xa2,0x0f,
+ 0x1a,0x25,0xa8,0xf7,0xc2,0xa5,0xec,0x57,0xf8,0x0d,
+ 0x2a,0xb6,0x64,0x03,0x8c,0x22,0x0f,0xe7,0x98,0xa1,
+ 0x12,0xfe,0x24,0xef,0x61,0x28,0x9f,0xa7,0x22,0x6b,
+ 0x6d,0xab,0x8d,0x7d,0x2a,0x8b,0xae,0x8b,0xfd,0xcb,
+ 0xd5,0x0b,0x79,0x1b,0x89,0xcb,0x5b,0x7a,0x8c,0xdc,
+ 0xe8,0x8d,0xdd,0x35,0x9f,0x06,0x69,0x64,0x12,0xeb,
+ 0x46,0x79,0xdf,0x82,0x2c,0x89,0x75,0x9e,0x7a,0xec,
+ 0xad,0xe5,0x88,0x31,0xfa,0x86,0x93,0xca,0xf1,0x2d,
+ 0x9b,0x62,0x5a,0xe9,0x43,0x09,0xf3,0x8c,0xe5,0xc7,
+ 0xc0,0xce,0x86,0xe7,0xdb,0xc7,0x4d,0x27,0xd5,0xee,
+ 0x76,0xce,0x35,0x30,0x47,0xef,0x00,0x1b,0x69,0x9a,
+ 0x3f,0xa5,0x2a,0xc9,0x07,0xab,0x99,0xba,0x2a,0xe7,
+ 0xfb,0xa9,0x4e,0xb9,0xae,0x2c,0x50,0xfc,0x35,0x49,
+ 0xe6,0x97,0x78,0x3c,0xb1,0x59,0xd7,0x1d,0x4e,0x4e,
+ 0xea,0xde,0xa0,0xd0,0xc4,0x1d,0xb1,0xd3,0x53,0x1e,
+ 0xf9,0xbf,0xb3,0x6a,0x17,0xb4,0xda,0xcc,0x27,0x19,
+ 0xc6,0x35,0xe8,0x28,0xd3,0xe3,0x76,0x3a,0xdc,0xd0,
+ 0x75,0xc8,0xb4,0x6c,0xbe,0x84,0x2a,0x45,0xd1,0x43,
+ 0x22,0x54,0xd7,0xc5,0xd0,0xd7,0x73,0x35,0x6b,0xa8,
+ 0xfa,0xad,0x60,0xc0,0x64,0xc1,0x58,0x89,0x09,0x81,
+ 0x0a,0x0b,0xea,0x33,0x91,0xb0,0xef,0x53,0x50,0x41,
+ 0xae,0xd9,0xee,0xbe,0x9e,0xf0,0x0b,0xa0,0x7c,0xbf,
+ 0x3f,0xc9,0x4b,0xe0,0x48,0xd8,0x10,0xd5,0x2e,0xce,
+ 0xf0,0x7c,0xd8,0x05,0xde,0x09,0x7e,0x8c,0x63,0x4c,
+ 0xdb,0x8b,0x91,0xcd,0x7f,0xb6,0x6b,0xad,0xce,0xb1,
+ 0x17,0x6c,0xf7,0x08,0x0d,0x7c,0xda,0x4f,0x0a,0x07,
+ 0xd0,0xae,0x72,0x3c,0x67,0x4a,0x44,0x54,0x47,0xce,
+ 0xe1,0x17,0x07,0x12,0xde,0x52,0xef,0xef,0x4c,0x2b,
+ 0x42,0x7d,0x09,0x80,0x36,0x34,0xdc,0x45,0x6f,0xb0,
+ 0x2d,0xab,0xa0,0x0c,0x58,0xae,0x35,0xd3,0x9b,0x37,
+ 0xc1,0x1d,0xeb,0xfe,0xc3,0x04,0xc9,0x1d,0xe7,0x3d,
+ 0x16,0x64,0xed,0xf5,0xe8,0xdf,0x99,0xa4,0xfb,0xad,
+ 0x79,0x88,0xd5,0x8c,0x62,0x33,0x9e,0x35,0xa6,0x7f,
+ 0x9d,0xb6,0x1a,0x40,0x6d,0xc3,0x89,0x5d,0x7b,0xe2,
+ 0xc8,0xd3,0x16,0x13,0x07,0x9a,0x38,0x22,0x33,0x03,
+ 0xac,0x70,0x3e,0xce,0x32,0x56,0x0b,0x58,0x56,0xb8,
+ 0xe9,0xd8,0x42,0x35,0x6c,0xb9,0x02,0xb3,0x64,0xeb,
+ 0xaa,0x09,0x3f,0xac,0x66,0x08,0xb4,0x5f,0x3e,0xb4,
+ 0xec,0x39,0xb1,0x99,0xe4,0x5d,0x1d,0x32,0x14,0xc1,
+ 0x48,0x8f,0x6c,0x65,0x87,0x34,0x50,0xa4,0xf4,0x9b,
+ 0x5b,0x2e,0xb5,0x79,0x0d,0x11,0x62,0xa4,0x35,0x9c,
+ 0x6f,0x92,0xd0,0x68,0x07,0xdd,0x69,0x85,0x48,0xe3,
+ 0x5d,0x10,0x34,0xaf,0xea,0x41,0x72,0x5a,0x71,0x00,
+ 0xf8,0xe6,0x47,0x7f,0xa0,0x6f,0x91,0x96,0x40,0x00,
+ 0x40,0x70,0xfb,0x63,0xcf,0xc9,0x36,0x04,0x1c,0x3b,
+ 0x11,0x08,0x29,0x81,0x9f
+};
+
+static unsigned char test15360[]={
+ 0x30,0x82,0x21,0xe8,0x02,0x01,0x00,0x02,0x82,0x07,
+ 0x81,0x00,0xad,0x3f,0xaa,0xdc,0x8c,0x85,0xcb,0x60,
+ 0xd2,0xf5,0x30,0xa1,0x0f,0x26,0xec,0xdf,0xfc,0x91,
+ 0x39,0xbd,0x3e,0x8f,0x99,0x64,0x1e,0x51,0xd2,0x27,
+ 0x5e,0x76,0xcd,0x86,0x33,0x07,0xf9,0xbd,0x3b,0x06,
+ 0xc3,0x3c,0x85,0xcb,0x7e,0x91,0x14,0xb0,0x0b,0x77,
+ 0x22,0x30,0x71,0xb8,0xbb,0x74,0x30,0x33,0x35,0x56,
+ 0x34,0x47,0x10,0x8f,0x88,0xe2,0x6f,0xdc,0x3b,0xe9,
+ 0x58,0x9d,0x0c,0xdc,0x8f,0x70,0x41,0x7a,0x12,0xd2,
+ 0x9a,0x35,0xbe,0x0a,0x57,0x13,0x0c,0xe9,0xbf,0x77,
+ 0x54,0x00,0x74,0xb7,0x1a,0x3e,0xa7,0xe9,0xb6,0xe7,
+ 0x4f,0x1e,0xa4,0xc0,0x7c,0x4c,0x66,0xc5,0xce,0xad,
+ 0x96,0x1b,0xe2,0x1a,0xf1,0x3d,0x8b,0x50,0xcf,0xe2,
+ 0x15,0x21,0x6d,0x83,0x95,0x00,0xee,0x97,0xc4,0xae,
+ 0xc9,0x38,0x62,0x6c,0xb2,0xe7,0x7f,0x15,0x0a,0xab,
+ 0x86,0xb9,0xd9,0x8a,0xf8,0xeb,0x88,0x5d,0xdc,0x0c,
+ 0x1e,0xc5,0xe6,0xa1,0x7b,0xbf,0xf1,0x02,0xe3,0xad,
+ 0xf8,0xed,0x17,0x9f,0x83,0x11,0x31,0x3b,0xad,0xb4,
+ 0xf9,0x8d,0x1d,0x56,0x9b,0xac,0x68,0x55,0x0a,0x74,
+ 0x20,0xee,0x57,0xe7,0x1c,0x6d,0x05,0xa1,0x4e,0xa5,
+ 0x11,0x99,0xb4,0x86,0xdb,0x58,0xe7,0xf6,0xb6,0x4f,
+ 0x92,0x58,0x57,0x9b,0x74,0x04,0xe5,0xd1,0x1d,0x7c,
+ 0x4b,0xb8,0x1f,0x5d,0x0e,0x93,0xee,0x44,0x18,0xb6,
+ 0x58,0x0e,0xa1,0x0b,0x8e,0x2e,0x99,0x4c,0x72,0x91,
+ 0xfa,0xfa,0xe2,0x22,0x05,0x5d,0x2b,0x2d,0xd8,0x60,
+ 0xd5,0x1b,0x08,0x56,0x2b,0xb5,0x21,0xdb,0x1a,0xe6,
+ 0xa8,0x39,0xa2,0xf4,0x58,0xcb,0xd2,0xf9,0xce,0xc0,
+ 0x1e,0x1b,0xf9,0xa7,0x37,0xca,0xa3,0x77,0x6e,0xb1,
+ 0xaf,0x33,0xb5,0x6d,0x5f,0x33,0x2e,0x1a,0x34,0xdb,
+ 0x42,0xbe,0x5f,0xf9,0x09,0xb7,0x9f,0xd4,0x09,0xfb,
+ 0x87,0x13,0x3c,0xe2,0x27,0xb8,0xf3,0x1d,0x7e,0x92,
+ 0xdd,0x87,0x86,0x55,0x69,0x9b,0x55,0xcd,0xef,0x7a,
+ 0x71,0x5d,0x81,0x3a,0xd9,0xf7,0x7f,0xde,0xe0,0x92,
+ 0xd9,0x78,0x0f,0x1d,0x43,0xb1,0x1e,0x29,0xc1,0x49,
+ 0xb6,0x5e,0x85,0x83,0xd9,0x04,0xfd,0x79,0xd8,0x47,
+ 0x03,0x2e,0x85,0x19,0xfd,0x63,0xe7,0xa4,0x8b,0xc0,
+ 0x94,0x0e,0xb7,0x54,0x97,0xd6,0x44,0x5d,0x63,0x12,
+ 0xff,0xdd,0xde,0x2c,0x00,0x0e,0xc9,0xca,0x7e,0xa2,
+ 0x65,0x25,0xb0,0x1d,0xa9,0x20,0x4f,0xdd,0xea,0x3a,
+ 0xb5,0xe8,0x0f,0xf3,0xb2,0xb7,0x00,0x4a,0xe8,0xa4,
+ 0x83,0x49,0xbd,0x78,0xdf,0xac,0x2c,0x37,0x81,0xb3,
+ 0xf3,0xb7,0x13,0x93,0x3e,0xb2,0x79,0x55,0xf2,0xd8,
+ 0x9c,0xf7,0xf2,0xf1,0xd5,0x6c,0x9c,0xff,0xec,0xf4,
+ 0xea,0x08,0x3c,0x65,0x35,0xb7,0x09,0x03,0x6d,0x99,
+ 0x1d,0x5b,0x73,0x06,0x61,0xb4,0xf0,0xc5,0xdb,0x3e,
+ 0xe0,0x1d,0xa8,0x5b,0x7a,0x5b,0x5b,0x9c,0x11,0x75,
+ 0x83,0x1d,0xf4,0x73,0x27,0xf3,0x79,0xf2,0x82,0xd6,
+ 0x28,0x45,0x58,0x23,0x6c,0x29,0xd3,0x50,0x51,0x1b,
+ 0x38,0xef,0x89,0x90,0x84,0xa2,0x4c,0x35,0x7b,0x30,
+ 0x5e,0xbd,0x1a,0xd5,0xdf,0xcd,0xcd,0x74,0x3f,0x2e,
+ 0x01,0xea,0x33,0x07,0x74,0xfb,0x86,0x75,0x20,0x0e,
+ 0x4f,0xbf,0x65,0xd4,0x15,0x19,0x6f,0x8d,0x37,0xcd,
+ 0xb6,0x6f,0x50,0x9d,0x5e,0x04,0x81,0x7d,0xec,0xd6,
+ 0xbb,0x40,0x1b,0xe0,0xf5,0xd5,0x86,0x26,0xc5,0x41,
+ 0x84,0x0e,0x3e,0x73,0xb7,0xa4,0xbe,0x2a,0xfe,0xd7,
+ 0xe4,0x4d,0x5c,0x2d,0x6a,0x04,0xe6,0xdd,0x28,0xa0,
+ 0x75,0x4c,0xe0,0x23,0x2c,0xad,0xec,0xaa,0x72,0xfd,
+ 0x03,0xc0,0x65,0xfa,0xc4,0x3c,0x25,0x10,0xae,0x3f,
+ 0x09,0x96,0x4e,0xff,0xfe,0xc7,0xe4,0x9e,0xec,0xb5,
+ 0x6e,0xec,0xf3,0x7a,0x83,0x7a,0x8b,0xbb,0x91,0x8d,
+ 0xab,0x3c,0x4d,0x7f,0x34,0x77,0xbe,0x0c,0x87,0xf2,
+ 0xc3,0xd6,0xcb,0xcc,0xfa,0x1e,0xaf,0x21,0x24,0xe9,
+ 0xaa,0x89,0x61,0x0c,0x7a,0x1c,0x7d,0x00,0x87,0x69,
+ 0x30,0xa0,0xb4,0x3b,0x96,0x1c,0x00,0x14,0x07,0xb8,
+ 0x3f,0x59,0x62,0x3a,0x3f,0xfb,0x68,0xb8,0x81,0x7d,
+ 0x4a,0x9d,0x1c,0xa2,0x07,0xa3,0xb1,0x42,0x7b,0xfa,
+ 0x9b,0xbc,0x94,0x30,0x7e,0xea,0xe7,0x40,0x7e,0xd4,
+ 0x0f,0x33,0x3b,0x57,0xda,0x8b,0x6d,0x64,0xd5,0xe4,
+ 0x91,0x83,0xf0,0x3d,0xae,0x8b,0x91,0xf0,0xcd,0xb1,
+ 0xa0,0xe0,0x0d,0xe1,0xbb,0x22,0x78,0x1f,0x3a,0xe5,
+ 0x53,0x28,0xf0,0x35,0xae,0x71,0xe6,0xfd,0x63,0xb2,
+ 0x9c,0x3f,0xdd,0x95,0x7b,0xc4,0xe9,0x2f,0xd9,0x93,
+ 0x3a,0x10,0x42,0x1c,0x90,0xab,0xfb,0xd3,0x02,0xe9,
+ 0x59,0xbc,0x53,0x7e,0xf3,0xe1,0x52,0x15,0xa6,0x58,
+ 0x9e,0xc1,0xa6,0x0e,0x2e,0x35,0x07,0x3a,0xc3,0x1f,
+ 0xaa,0x58,0xe7,0xc6,0x33,0x6a,0x39,0x4b,0x21,0x15,
+ 0x3d,0x92,0x4e,0x5e,0xf9,0x01,0xd6,0x0f,0x28,0x61,
+ 0x15,0xdf,0xed,0x6f,0x75,0xc4,0x8f,0xcb,0x16,0x55,
+ 0x09,0xc7,0x24,0xb2,0x0c,0x49,0x25,0x8d,0x5e,0xf1,
+ 0x0e,0xe0,0xe2,0xc4,0xcc,0x1f,0x4e,0x60,0x5c,0x5e,
+ 0xc6,0x7f,0x68,0x7f,0xdb,0x1a,0x01,0x67,0x07,0xb1,
+ 0x56,0x93,0xf2,0x26,0x81,0xc0,0x33,0xb8,0x48,0xf9,
+ 0x2c,0x5c,0x18,0