tbase64.h - sick - sign and check files using ed25519
 (HTM) git clone git://z3bra.org/sick
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       tbase64.h (258B)
       ---
            1 #ifndef BASE64_H__
            2 #define BASE64_H__
            3 
            4 size_t base64_encode(char **buf, const unsigned char *msg, size_t len);
            5 size_t base64_decode(char **buf, const unsigned char *msg, size_t len);
            6 size_t base64_fold(FILE *out, char *msg, size_t len, size_t fold);
            7 
            8 #endif