1 /* 2 * Copyright (C) 2018 Yubico AB - See COPYING 3 */ 4 5 #ifndef B64_H 6 #define B64_H 7 8 int b64_encode(const void *, size_t, char **); 9 int b64_decode(const char *, void **, size_t *); 10 11 #endif /* B64_H */ 12