aboutsummaryrefslogtreecommitdiff
path: root/src/base32.h
blob: 25818785148d196b4cecb4c8b7a7cff1ab4b5991 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef TOTP_BASE32_H
#define TOTP_BASE32_H

#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>

bool b32toa(uint8_t *restrict, const char *restrict, size_t);

#endif /* !TOTP_BASE32_H */