Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed SDFileSystemFilinfo AriSnProtocol NetServicesMin AriSnComm MODSERIAL PowerControlClkPatch DS1820OW
SnBase64.h
- Committer:
- uci1
- Date:
- 2015-10-30
- Revision:
- 84:80b15993944e
- Parent:
- 3:24c5f0f50bf1
File content as of revision 84:80b15993944e:
#ifndef BASE64_H
#define BASE64_H
#if 0
/*
#include <stdint.h>
//Originaly from Rolf's iputil.h
#define BASE64ENC_LEN(slen) ( ((((slen)-1)/3)+1)<<2 )
#define CHARPAD '='
struct B64 {
/* modp is faster
static
char* base64enc(const char* const input, const uint32_t length, char* output);
*/
static
int modp_b64_encode(const char* str, const int len, char* dest);
static
int modp_b64_decode(const char* src, int len, char* dest);
};
*/
#endif // 0
#endif