This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Compile: g++ generate-otp.cpp --std=c++17 -Wall -Wextra -o otp_generator | |
// Run: ./otp_generator | |
#ifndef ONE_TIME_PASSWORD_H | |
#define ONE_TIME_PASSWORD_H | |
#include <string> | |
#include <vector> | |
class OneTimePassword |