#ifndef _BASE32_H___ #define _BASE32_H___ #include "stralloc.h" extern int base32_decode(stralloc *out, const unsigned char *in, unsigned int inlen); extern int base32_decodehex(stralloc *out, const unsigned char *in, unsigned int inlen); extern int base32_encode(stralloc *out, const unsigned char *in, unsigned int inlen); #endif