1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-15 15:53:55 +00:00

Added ILibBase64DecodeEx

This commit is contained in:
Bryan Roe
2019-03-04 14:29:52 -08:00
parent 692a3b52ba
commit 0aa0a8cfa4
2 changed files with 6 additions and 0 deletions

View File

@@ -6034,6 +6034,11 @@ int ILibBase64DecodeLength(const int inputLen)
return ((inputLen * 3) / 4) + 4;
}
int ILibBase64DecodeEx(unsigned char* input, const int inputlen, unsigned char* output)
{
return(ILibBase64Decode(input, inputlen, &output));
}
/*! \fn ILibBase64Decode(unsigned char* input, const int inputlen, unsigned char** output)
\brief Decode a base64 encoded stream discarding padding, line breaks and noise
\par