first commit
This commit is contained in:
18
libraries/vendor/web-token/jwt-signature-algorithm-rsa/RS384.php
vendored
Normal file
18
libraries/vendor/web-token/jwt-signature-algorithm-rsa/RS384.php
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Jose\Component\Signature\Algorithm;
|
||||
|
||||
final class RS384 extends RSAPKCS1
|
||||
{
|
||||
public function name(): string
|
||||
{
|
||||
return 'RS384';
|
||||
}
|
||||
|
||||
protected function getAlgorithm(): string
|
||||
{
|
||||
return 'sha384';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user