Signature Algorithms
Algorithm
Description
Experimental Algorithms
Algorithm
Description
How To Use
<?php
use Jose\Component\Core\AlgorithmManager;
use Jose\Component\Signature\Algorithm\PS256;
use Jose\Component\Signature\Algorithm\ES512;
use Jose\Component\Signature\Algorithm\None;
$algorithm_manager = new AlgorithmManager([
new PS256(),
new ES512(),
new None(),
]);Last updated
Was this helpful?