primo commit
This commit is contained in:
18
libraries/vendor/web-token/jwt-library/KeyManagement/Analyzer/HS256KeyAnalyzer.php
vendored
Normal file
18
libraries/vendor/web-token/jwt-library/KeyManagement/Analyzer/HS256KeyAnalyzer.php
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user