Project SkyFire Core
SkyFire 5.4.8 server core API documentation
Loading...
Searching...
No Matches
TOTP.h
Go to the documentation of this file.
1/*
2* This file is part of Project SkyFire https://www.projectskyfire.org.
3* See LICENSE.md file for Copyright information
4*/
5
6#ifndef SF_TOTP_H
7#define SF_TOTP_H
8
9#include <string>
10
11namespace TOTP
12{
13 unsigned int GenerateToken(std::string& b32key);
14}
15
16#endif
Definition TOTP.cpp:62
unsigned int GenerateToken(std::string &b32key)
Definition TOTP.cpp:63