%PDF- %PDF-
Direktori : /var/www/html/management/vendor/namshi/jose/src/Namshi/JOSE/Signer/OpenSSL/ |
Current File : /var/www/html/management/vendor/namshi/jose/src/Namshi/JOSE/Signer/OpenSSL/RSA.php |
<?php namespace Namshi\JOSE\Signer\OpenSSL; /** * Class responsible to sign inputs with the a RSA algorithm, after hashing it. */ abstract class RSA extends PublicKey { /** * {@inheritdoc} */ protected function getSupportedPrivateKeyType() { return defined('OPENSSL_KEYTYPE_RSA') ? OPENSSL_KEYTYPE_RSA : false; } }