Reimplementation of Pijul in C, for education, fun and absolutely no profit
#ifndef ANI_BASE32_H
#define ANI_BASE32_H

/**
 * Takes care of decoding a base32-encoded blake3 hash sum.
 *
 * The input is assumed to be an array of 53 base32 characters, dst is assumed
 * to be able to hold at least 32 bytes.
 */
void b32dec(u8 *, char const *);
void b32enc(char *, u8 const *);

#endif