Lines Matching refs:PL_Base64Decode

2044 /* PL_Base64Decode, single characters */
2053 printf("Test 009 (PL_Base64Decode, single characters, equals) ..."); fflush(stdout);
2068 rv = PL_Base64Decode((char *)cypher, 4, result);
2088 /* PL_Base64Decode, single characters */
2097 printf("Test 010 (PL_Base64Decode, single characters, no equals) ..."); fflush(stdout);
2112 rv = PL_Base64Decode((char *)cypher, 2, result);
2132 /* PL_Base64Decode, double characters */
2141 printf("Test 011 (PL_Base64Decode, double characters, equals) ..."); fflush(stdout);
2161 rv = PL_Base64Decode((char *)cypher, 4, result);
2183 /* PL_Base64Decode, double characters */
2192 printf("Test 012 (PL_Base64Decode, double characters, no equals) ..."); fflush(stdout);
2212 rv = PL_Base64Decode((char *)cypher, 3, result);
2234 /* PL_Base64Decode, triple characters */
2243 printf("Test 013 (PL_Base64Decode, triple characters) ..."); fflush(stdout);
2267 rv = PL_Base64Decode((char *)cypher, 4, result);
2291 /* PL_Base64Decode, random strings */
2297 printf("Test 014 (PL_Base64Decode, random strings, equals) ..."); fflush(stdout);
2304 char *rv = PL_Base64Decode(array[i].cyphertext, clen, result);
2339 /* PL_Base64Decode, random strings */
2347 printf("Test 015 (PL_Base64Decode, random strings, no equals) ..."); fflush(stdout);
2375 rv = PL_Base64Decode(buffer, clen, result);
2395 /* PL_Base64Decode, single characters, malloc */
2403 printf("Test 016 (PL_Base64Decode, single characters, equals, malloc) ..."); fflush(stdout);
2418 rv = PL_Base64Decode((char *)cypher, 4, (char *)0);
2441 /* PL_Base64Decode, single characters, malloc */
2449 printf("Test 017 (PL_Base64Decode, single characters, no equals, malloc) ..."); fflush(stdout);
2464 rv = PL_Base64Decode((char *)cypher, 2, (char *)0);
2487 /* PL_Base64Decode, double characters, malloc */
2495 printf("Test 018 (PL_Base64Decode, double characters, equals, malloc) ..."); fflush(stdout);
2515 rv = PL_Base64Decode((char *)cypher, 4, (char *)0);
2540 /* PL_Base64Decode, double characters, malloc */
2548 printf("Test 019 (PL_Base64Decode, double characters, no equals, malloc) ..."); fflush(stdout);
2568 rv = PL_Base64Decode((char *)cypher, 3, (char *)0);
2593 /* PL_Base64Decode, triple characters, malloc */
2601 printf("Test 020 (PL_Base64Decode, triple characters, malloc) ..."); fflush(stdout);
2626 rv = PL_Base64Decode((char *)cypher, 4, (char *)0);
2653 /* PL_Base64Decode, random strings, malloc */
2658 printf("Test 021 (PL_Base64Decode, random strings, equals, malloc) ..."); fflush(stdout);
2664 char *rv = PL_Base64Decode(array[i].cyphertext, clen, (char *)0);
2694 printf("Test 022 (PL_Base64Decode, random strings, no equals, malloc) ..."); fflush(stdout);
2720 rv = PL_Base64Decode(buffer, clen, (char *)0);
2805 /* PL_Base64Decode, random strings */
2811 printf("Test 025 (PL_Base64Decode, random strings, equals, strlen) ..."); fflush(stdout);
2818 char *rv = PL_Base64Decode(array[i].cyphertext, 0, result);
2853 /* PL_Base64Decode, random strings */
2861 printf("Test 026 (PL_Base64Decode, random strings, no equals, strlen) ..."); fflush(stdout);
2889 rv = PL_Base64Decode(buffer, 0, result);
2909 /* PL_Base64Decode, random strings, malloc */
2914 printf("Test 027 (PL_Base64Decode, random strings, equals, malloc, strlen) ..."); fflush(stdout);
2920 char *rv = PL_Base64Decode(array[i].cyphertext, 0, (char *)0);
2950 printf("Test 028 (PL_Base64Decode, random strings, no equals, malloc, strlen) ..."); fflush(stdout);
2976 rv = PL_Base64Decode(buffer, 0, (char *)0);