This commit is contained in:
djmaze 2021-04-13 11:42:06 +02:00
parent 84f3a7dd77
commit d9bab28bfe
16 changed files with 1206 additions and 0 deletions

View file

@ -0,0 +1,8 @@
<?php
interface TwoFactorAuthInterface
{
public function Label() : string;
public function VerifyCode(string $sSecret, string $sCode) : bool;
public function CreateSecret() : string;
}