| Current Path : /home/users/unlimited/www/api.xalonx.com/vendor/namshi/jose/src/Namshi/JOSE/Signer/OpenSSL/ |
| Current File : /home/users/unlimited/www/api.xalonx.com/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;
}
}