xref: /netbsd-src/external/bsd/pam-u2f/dist/b64.h (revision 7bdf38e5b7a28439665f2fdeff81e36913eef7dd)
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