pokeplatinum/lib/include/auth/util_base64.h
2022-12-29 17:25:16 +01:00

18 lines
378 B
C

#ifndef DWC_UTIL_BASE64_H_
#define DWC_UTIL_BASE64_H_
#include <nitro.h>
#ifdef __cplusplus
extern "C" {
#endif
int DWC_Auth_Base64Encode(const char * src, const unsigned long srclen, char * dst, const unsigned long dstlen);
int DWC_Auth_Base64Decode(const char * src, const unsigned long srclen, char * dst, const unsigned long dstlen);
#ifdef __cplusplus
}
#endif
#endif