diff options
Diffstat (limited to 'Psso/AuthInterface/Totp.php')
| -rw-r--r-- | Psso/AuthInterface/Totp.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Psso/AuthInterface/Totp.php b/Psso/AuthInterface/Totp.php new file mode 100644 index 0000000..5e09117 --- /dev/null +++ b/Psso/AuthInterface/Totp.php @@ -0,0 +1,9 @@ +<?php +namespace Psso\AuthInterface; + +interface Totp { + public function validateTotp( + string $user, + #[\SensitiveParameter] string $otp + ): bool; +} |
