aboutsummaryrefslogtreecommitdiff
path: root/Psso/AuthInterface/Totp.php
blob: 5e091179e159a00e384fca43804c347d52519b52 (plain)
1
2
3
4
5
6
7
8
9
<?php
namespace Psso\AuthInterface;

interface Totp {
    public function validateTotp(
        string $user,
        #[\SensitiveParameter] string $otp
    ): bool;
}