mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-02 21:12:02 +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;
|
|
}
|