faj1/otp

对OTPHP的封装

1.0.4 2024-12-14 21:17 UTC

This package is auto-updated.

Last update: 2025-03-14 21:55:31 UTC


README

本库是对 spomky-labs/otphp 库的简化封装 请使用以下命令进行安装,使用方法请参考测试用例

composer require faj1/otp
public function testVerify()
{
    var_dump(Otp::verify('KSWUWUM334TJFY5HRLQFFI6UTDDYWIXJP2YNQOJH6J4I2IKQ4OESH5HAMWDBL3VOC7LM55UBLUFWANFZR7ZSUQLH5VLHK3BM2DW2DGQ',696735));
    $this->assertTrue(true, 'Code executed successfully without exceptions.');
}

public function testGetImg()
{
    echo Otp::getImg('KSWUWUM334TJFY5HRLQFFI6UTDDYWIXJP2YNQOJH6J4I2IKQ4OESH5HAMWDBL3VOC7LM55UBLUFWANFZR7ZSUQLH5VLHK3BM2DW2DGQ').PHP_EOL;
    $this->assertTrue(true, 'Code executed successfully without exceptions.');
}

public function testGetSecret()
{
    echo Otp::getSecret().PHP_EOL;

    $this->assertTrue(true, 'Code executed successfully without exceptions.');
}

public function testGetOpt()
{
    echo Otp::getOpt('KSWUWUM334TJFY5HRLQFFI6UTDDYWIXJP2YNQOJH6J4I2IKQ4OESH5HAMWDBL3VOC7LM55UBLUFWANFZR7ZSUQLH5VLHK3BM2DW2DGQ').PHP_EOL;
    $this->assertTrue(true, 'Code executed successfully without exceptions.');
}