Skip to content

Commit 4221294

Browse files
author
Adam Rudd
committed
Revert "Removed superfluous b64 alphabet"
This reverts commit 1df434e.
1 parent 1df434e commit 4221294

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Base64.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#include "Base64.h"
22

3+
const char b64_alphabet[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
4+
"abcdefghijklmnopqrstuvwxyz"
5+
"0123456789+/";
6+
37
/* 'Private' declarations */
48
inline void a3_to_a4(unsigned char * a4, unsigned char * a3);
59
inline void a4_to_a3(unsigned char * a3, unsigned char * a4);

0 commit comments

Comments
 (0)