mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-02 11:12:20 +03: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;
|
|
}
|