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;
    }