You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
270 B

#ifndef UTIL_TOKEN_H
#define UTIL_TOKEN_H
#include <stdbool.h>
/**
* Number of bytes used by a token, including the terminating zero byte.
*/
#define TOKEN_SIZE 33
/**
* Generate a random token string.
*/
bool generate_token(char out[static TOKEN_SIZE]);
#endif