endtoend-test-psl/tests/Psl/Hash/Hmac/AlgorithmsTest.php
2020-10-20 07:45:30 +01:00

19 lines
317 B
PHP

<?php
declare(strict_types=1);
namespace Psl\Tests\Hash\Hmac;
use PHPUnit\Framework\TestCase;
use Psl\Hash\Hmac;
use function hash_hmac_algos;
final class AlgorithmsTest extends TestCase
{
public function testAlgorithms(): void
{
static::assertSame(hash_hmac_algos(), Hmac\algorithms());
}
}