Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/JWK.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public static function parseKeySet($source)
/**
* Parse a JWK key
* @param $source
* @return resource|array an associative array represents the key
* @return OpenSSLAsymmetricKey|resource The public key
*/
public static function parseKey($source)
{
Expand Down Expand Up @@ -155,4 +155,4 @@ private static function encodeLength($length)
return pack('Ca*', 0x80 | strlen($temp), $temp);
}

}
}