vendor/stringencoders/src/modp_b64_gen.c in ffi-hydrogen-0.1.1 vs vendor/stringencoders/src/modp_b64_gen.c in ffi-hydrogen-0.1.2

- old
+ new

@@ -30,14 +30,14 @@ static uint8_t b64chars[64] = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', - 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', + 'n', 'o', '~', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-', '_' }; -static uint8_t padchar = '='; +static uint8_t padchar = 'p'; static void printStart(void) { printf("#include \"modp_stdint.h\"\n"); printf("#define CHAR62 '%c'\n", b64chars[62]);