use base64 alphabet directly

This commit is contained in:
orignal 2014-01-29 17:38:53 -05:00
parent 7c471d99c3
commit 95b40c0c30
2 changed files with 7 additions and 2 deletions

View file

@ -27,6 +27,11 @@ namespace data
'4', '5', '6', '7', '8', '9', '-', '~'
};
const char * GetBase64SubstitutionTable ()
{
return T64;
}
/*
* Reverse Substitution Table (built in run time)
*/