]> www.average.org Git - pam_pcsc_cr.git/blob - base64.h
bump version
[pam_pcsc_cr.git] / base64.h
1 /*
2 This is an addition to the libb64 project, and has been placed in the public domain.
3 For details, see http://sourceforge.net/projects/libb64
4 */
5
6 /*
7   Modified by Eugene Crosser to fit pam_pcsc_cr project, 2013
8 */
9
10 #ifndef BASE64_H
11 #define BASE64_H
12
13 int b64_encode(const unsigned char *src, const int ssize,
14                 char *const b64, int *const bsize);
15 int b64_decode(const char *b64, unsigned char *const dst, int *const dsize);
16
17 #endif /* BASE64_H */