Skip to content

rain8128/base64

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

Base64 encoding/decoding library in C.

Reference

base64Encode

int base64Encode(const uint8_t *src, size_t srclen, char *dst, size_t dstlen);

Encodes the byte string src of length srclen into the null-terminated string dst. dst accepts lengths up to dstlen.

base64Decode

int base64Decode(const char *src, size_t srclen, uint8_t *dst, size_t dstlen);

Decodes the char string src of length srclen into the byte string dst. dst accepts length up to dstlen.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages