Your IP : 216.73.216.182


Current Path : /var/www/html/libraries/vendor/web-token/jwt-library/KeyManagement/Analyzer/
Upload File :
Current File : /var/www/html/libraries/vendor/web-token/jwt-library/KeyManagement/Analyzer/HS384KeyAnalyzer.php

<?php

declare(strict_types=1);

namespace Jose\Component\KeyManagement\Analyzer;

final class HS384KeyAnalyzer extends HSKeyAnalyzer
{
    protected function getAlgorithmName(): string
    {
        return 'HS384';
    }

    protected function getMinimumKeySize(): int
    {
        return 384;
    }
}