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

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

Exports the private key string from the KeyResource
private getPrivateKeyString ( resource $keyResource ) : string
$keyResource resource The key resource
Результат string The private key string
    private function getPrivateKeyString($keyResource)
    {
        openssl_pkey_export($keyResource, $privateKeyString, null, $this->openSSLConfiguration);
        return $privateKeyString;
    }