I want to do JWE in php. I've installed gree/jose library and also phpseclib via composer. But, why I'm keep getting error below?
Fatal error: Class 'phpseclib\Crypt\Random' not found in /export/vhost/onlinepayment.com.my/htdocs/NBepay/vendor/gree/jose/src/JOSE/JWE.php on line 106
below are the libraries that i've installed.
- composer require gree/jose
- composer require phpseclib/phpseclib:~3.0
Already included autoload and the JOSE.
include_once $FIXPATH."vendor/autoload.php";
use \JOSE\JWE;
what should I do?