Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

base32.h
#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