* Add phone call authentication method * Remove dynamic mem allocation from error handler * Add more error handling code * Move error handling to different file * Remove Socket IO dependency * cleanup in websocket code * Add rapidjson as cmake dependency * Added Dockerfiles as primary build system for packages * Changed policy in CMakeList to work with lower version of CMake * Fix opensuse builds * Link filesystem library in gcc 8.5 or older
26 lines
563 B
C++
26 lines
563 B
C++
#pragma once
|
|
|
|
#include <tl/expected.hpp>
|
|
|
|
#include <rublon/authentication_step_interface.hpp>
|
|
#include <rublon/pam_action.hpp>
|
|
|
|
#include <rublon/method/passcode_based_auth.hpp>
|
|
|
|
namespace rublon::method {
|
|
|
|
class OTP : public PasscodeBasedAuth {
|
|
public:
|
|
OTP(Session & session, int prompts)
|
|
: PasscodeBasedAuth(session,
|
|
"",
|
|
"Mobile Passcode",
|
|
"Enter the passcode from the Authenticator app: ",
|
|
6,
|
|
true,
|
|
PasscodeBasedAuth::Endpoint::ConfirmCode,
|
|
prompts) {}
|
|
};
|
|
|
|
} // namespace rublon::method
|