18#ifndef DETERMINISTICESPASYNCWEBSERVER_TOTP_H
19#define DETERMINISTICESPASYNCWEBSERVER_TOTP_H
35uint32_t detws_hotp(
const uint8_t *key,
size_t keylen, uint64_t counter, uint8_t digits);
41uint32_t detws_totp(
const uint8_t *key,
size_t keylen, uint64_t unix_time, uint32_t period, uint8_t digits);
47bool detws_totp_verify(
const uint8_t *key,
size_t keylen, uint64_t unix_time, uint32_t code, uint32_t period,
48 uint8_t digits,
int window);
54int detws_base32_decode(
const char *b32, uint8_t *out,
size_t cap);
User-facing configuration for DeterministicESPAsyncWebServer.