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