mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 12:15:20 +08:00
8 lines
189 B
PHP
8 lines
189 B
PHP
<?php
|
|
|
|
interface TwoFactorAuthInterface
|
|
{
|
|
public function Label() : string;
|
|
public function VerifyCode(string $sSecret, string $sCode) : bool;
|
|
public function CreateSecret() : string;
|
|
}
|