D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
api2
/
vendor
/
namshi
/
jose
/
src
/
Namshi
/
JOSE
/
Signer
/
OpenSSL
/
Filename :
RSA.php
back
Copy
<?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; } }