sick

sign and check files using ed25519
Log | Files | Refs | Submodules | README | LICENSE

base64.h (258B)


1
2
3
4
5
6
7
8
#ifndef BASE64_H__
#define BASE64_H__

size_t base64_encode(char **buf, const unsigned char *msg, size_t len);
size_t base64_decode(char **buf, const unsigned char *msg, size_t len);
size_t base64_fold(FILE *out, char *msg, size_t len, size_t fold);

#endif