| 1 | <?php |
||
| 20 | trait JWKSetPEM |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @return \Jose\Object\JWKInterface[] |
||
| 24 | */ |
||
| 25 | abstract public function getKeys(); |
||
| 26 | |||
| 27 | /** |
||
| 28 | * {@inheritdoc} |
||
| 29 | */ |
||
| 30 | public function toPEM() |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @param \Jose\Object\JWKInterface $key |
||
| 53 | * |
||
| 54 | * @return string |
||
| 55 | */ |
||
| 56 | private function getPEM(JWKInterface $key) |
||
| 67 | } |
||
| 68 |