Neos\Flow\Security\Cryptography\OpenSslRsaKey::__construct PHP 메소드

__construct() 공개 메소드

Constructor
public __construct ( string $modulus, string $keyString )
$modulus string The HEX modulus
$keyString string The private key string
    public function __construct($modulus, $keyString)
    {
        $this->modulus = $modulus;
        $this->keyString = $keyString;
    }