Extract public key from private pem file at runtime

This commit is contained in:
ErickSkrauch
2024-06-14 03:03:10 +02:00
parent ca304261a3
commit 0a666e1e12
12 changed files with 33 additions and 80 deletions

View File

@ -23,10 +23,6 @@ class HS256 implements AlgorithmInterface {
$this->key = $key;
}
public function getAlgorithmId(): string {
return 'HS256';
}
public function getSigner(): Signer {
return new Sha256();
}