djbdnscurve6  38
djbdnscurve6
base32.h
Go to the documentation of this file.
1 #ifndef _BASE32_H
2 #define _BASE32_H
3 
4 static const char base32_digits[32] = "0123456789bcdfghjklmnpqrstuvwxyz";
5 
6 unsigned int base32_bytessize(unsigned int);
7 unsigned int base32_decode(char *,const char *,unsigned int,int);
8 void base32_encodebytes(char *,const char *,unsigned int);
9 void base32_encodekey(char *,const char *);
10 
11 #endif
void base32_encodekey(char *, const char *)
Definition: base32.c:88
unsigned int base32_decode(char *, const char *, unsigned int, int)
Definition: base32.c:10
void base32_encodebytes(char *, const char *, unsigned int)
Definition: base32.c:61
unsigned int base32_bytessize(unsigned int)
Definition: base32.c:4