|
@@ -24,6 +24,7 @@
|
|
|
int
|
|
int
|
|
|
main (int argc, char **argv)
|
|
main (int argc, char **argv)
|
|
|
{
|
|
{
|
|
|
|
|
+#if 0 /* The current base64 function doesn't work on 8bit data */
|
|
|
char random[1024] = {
|
|
char random[1024] = {
|
|
|
0x8b,0xb0,0xc4,0xe2,0xfc,0x22,0x9f,0x0d,0x85,0xe7,0x2c,0xaa,0x39,0xa1,0x46,0x88,
|
|
0x8b,0xb0,0xc4,0xe2,0xfc,0x22,0x9f,0x0d,0x85,0xe7,0x2c,0xaa,0x39,0xa1,0x46,0x88,
|
|
|
0x50,0xe6,0x34,0x37,0x0b,0x45,0x4b,0xb8,0xb2,0x86,0x7a,0x3e,0x7f,0x0c,0x40,0x18,
|
|
0x50,0xe6,0x34,0x37,0x0b,0x45,0x4b,0xb8,0xb2,0x86,0x7a,0x3e,0x7f,0x0c,0x40,0x18,
|
|
@@ -179,9 +180,8 @@ main (int argc, char **argv)
|
|
|
0x46,0x62,0x5a,0x61,0x35,0x52,0x6e,0x50,0x59,0x43,0x4f,0x36,0x4f,0x70,0x4d,0x6c,
|
|
0x46,0x62,0x5a,0x61,0x35,0x52,0x6e,0x50,0x59,0x43,0x4f,0x36,0x4f,0x70,0x4d,0x6c,
|
|
|
0x41,0x6e,0x6a,0x4d,0x56,0x41,0x3d,0x3d
|
|
0x41,0x6e,0x6a,0x4d,0x56,0x41,0x3d,0x3d
|
|
|
};
|
|
};
|
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
-#if 0
|
|
|
|
|
- /* The old base64 function didn't work on 8bit data, below is 7bit */
|
|
|
|
|
char random[1024] = {
|
|
char random[1024] = {
|
|
|
0x0b,0x30,0x44,0x62,0x7c,0x22,0x1f,0x0d,0x05,0x67,0x2c,0x2a,0x39,0x21,0x46,0x08,
|
|
0x0b,0x30,0x44,0x62,0x7c,0x22,0x1f,0x0d,0x05,0x67,0x2c,0x2a,0x39,0x21,0x46,0x08,
|
|
|
0x50,0x66,0x34,0x37,0x0b,0x45,0x4b,0x38,0x32,0x06,0x7a,0x3e,0x7f,0x0c,0x40,0x18,
|
|
0x50,0x66,0x34,0x37,0x0b,0x45,0x4b,0x38,0x32,0x06,0x7a,0x3e,0x7f,0x0c,0x40,0x18,
|
|
@@ -336,8 +336,6 @@ main (int argc, char **argv)
|
|
|
0x46,0x54,0x5a,0x61,0x5a,0x52,0x6c,0x50,0x59,0x43,0x4d,0x36,0x4f,0x68,0x4d,0x6c,
|
|
0x46,0x54,0x5a,0x61,0x5a,0x52,0x6c,0x50,0x59,0x43,0x4d,0x36,0x4f,0x68,0x4d,0x6c,
|
|
|
0x41,0x6e,0x68,0x4d,0x56,0x41,0x3d,0x3d,0x00
|
|
0x41,0x6e,0x68,0x4d,0x56,0x41,0x3d,0x3d,0x00
|
|
|
};
|
|
};
|
|
|
-#endif
|
|
|
|
|
-
|
|
|
|
|
char *b64_test;
|
|
char *b64_test;
|
|
|
|
|
|
|
|
plan_tests(1);
|
|
plan_tests(1);
|