base32 encode

This commit is contained in:
orignal 2014-08-21 12:32:03 -04:00
parent aaa8e39d68
commit 90fe263124
2 changed files with 31 additions and 0 deletions

View file

@ -14,6 +14,7 @@ namespace data
const char * GetBase64SubstitutionTable ();
size_t Base32ToByteStream (const char * inBuf, size_t len, uint8_t * outBuf, size_t outLen);
size_t ByteStreamToBase32 (const uint8_t * InBuf, size_t len, char * outBuf, size_t outLen);
}
}