jose-php icon indicating copy to clipboard operation
jose-php copied to clipboard

PHP JOSE Library (JWT, JWS, JWE, JWK, JWK Set, JWK Thumbprint are supported)

Results 14 jose-php issues
Sort by recently updated
recently updated
newest added

- In the current process in cipher() method in JWE.php its `$cipher = new AES(AES::MODE_CBC);` where AES::MODE_CBC will be '2'. - and according to the SymmetricKey.php constructor code shown below...

Please share exact phpseclib url or version for which its work

This PR is based on https://github.com/nov/jose-php/pull/45 created by [@Hailong](https://github.com/Hailong), but keeps the support for the `A256GCM` algoritm. Also `composer.lock` is removed as this is a library and should not lock...

I need to run this code using PHP 8.1.5 version.

How can I install/require?

Error: Class 'phpseclib\Crypt\RSA' not found in JOSE_JWK->toKey() (line 23 of \vendor\gree\jose\src\JOSE\JWK.php).

Thanks for creating this great library first of all, it's neat and powerful! While since our project has already installed phpseclib 3.x, I have to adapt jose-php to work with...

Throwing should be inside this private function for proper separation of concerns. hash_hmac returns false when the algorithm does not exist, but it is not checked. Added checking and a...

Hi, I have tried siging, encryption and decryption using this library. Encryption and decryption working fine, for my case i need to sign first and then needs to be encrypt...