Your IP : 216.73.217.13


Current Path : /home/rtorresani/www/vendor/web-token/jwt-framework/src/SignatureAlgorithm/RSA/
Upload File :
Current File : //home/rtorresani/www/vendor/web-token/jwt-framework/src/SignatureAlgorithm/RSA/PS256.php

<?php

declare(strict_types=1);

namespace Jose\Component\Signature\Algorithm;

final class PS256 extends RSAPSS
{
    public function name(): string
    {
        return 'PS256';
    }

    protected function getAlgorithm(): string
    {
        return 'sha256';
    }
}