mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-09 06:28:28 +03:00
#84 as plugin
This commit is contained in:
parent
84f3a7dd77
commit
d9bab28bfe
16 changed files with 1206 additions and 0 deletions
8
plugins/two-factor-auth/providers/interface.php
Normal file
8
plugins/two-factor-auth/providers/interface.php
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
interface TwoFactorAuthInterface
|
||||
{
|
||||
public function Label() : string;
|
||||
public function VerifyCode(string $sSecret, string $sCode) : bool;
|
||||
public function CreateSecret() : string;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue