Neos\Flow\Security\Cryptography\RsaWalletServicePhp::getModulus PHP Метод

getModulus() приватный Метод

Exports the public modulus HEX string from the KeyResource
private getModulus ( resource $keyResource ) : string
$keyResource resource The key resource
Результат string The HEX public modulus string
    private function getModulus($keyResource)
    {
        $keyDetails = openssl_pkey_get_details($keyResource);
        return strtoupper(bin2hex($keyDetails['rsa']['n']));
    }