blob: 3c3e8e78814fda4877c87fad2f3dc02687160b24 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef TOTP_HMAC_H
#define TOTP_HMAC_H
#include <stddef.h>
#include <stdint.h>
void hmac_sha1(uint8_t *restrict,
const uint8_t *restrict, size_t,
const uint8_t *restrict, size_t);
#endif /* !TOTP_HMAC_H */
|