We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1df434e commit 4221294Copy full SHA for 4221294
Base64.cpp
@@ -1,5 +1,9 @@
1
#include "Base64.h"
2
3
+const char b64_alphabet[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
4
+ "abcdefghijklmnopqrstuvwxyz"
5
+ "0123456789+/";
6
+
7
/* 'Private' declarations */
8
inline void a3_to_a4(unsigned char * a4, unsigned char * a3);
9
inline void a4_to_a3(unsigned char * a3, unsigned char * a4);
0 commit comments