12 lines
433 B
Plaintext
12 lines
433 B
Plaintext
|
<?php
|
||
|
$DOMAIN = 'machines.frogeye.fr';
|
||
|
$TOTP = new TOTP(
|
||
|
'newcommer@machines.frogeye.fr', // The label (string)
|
||
|
'EUPJMTU6M7XPHG5P', // The secret encoded in base 32 (string)
|
||
|
10, // The period (int)
|
||
|
'sha512', // The digest algorithm (string)
|
||
|
8 // The number of digits (int)
|
||
|
);
|
||
|
$TOTP->setIssuer('Machines Frogeye');
|
||
|
?>
|