Files
conservatorio-tomadini/libraries/vendor/web-token/jwt-library/KeyManagement/Analyzer/HS256KeyAnalyzer.php
2024-12-17 17:34:10 +01:00

19 lines
305 B
PHP

<?php
declare(strict_types=1);
namespace Jose\Component\KeyManagement\Analyzer;
final class HS256KeyAnalyzer extends HSKeyAnalyzer
{
protected function getAlgorithmName(): string
{
return 'HS256';
}
protected function getMinimumKeySize(): int
{
return 256;
}
}