System::Security::Cryptography::RSA::Create メソッド

RSA::Create() method

デフォルトの RSA アルゴリズム実装を作成します。

static SharedPtr<RSA> System::Security::Cryptography::RSA::Create()

参照

RSA::Create(const RSAParameters&) method

指定されたパラメーターでデフォルトの RSA アルゴリズム実装を作成します。

static SharedPtr<RSA> System::Security::Cryptography::RSA::Create(const RSAParameters &parameters)
パラメーター説明
parametersconst RSAParameters&RSA アルゴリズムのパラメーター。

参照

RSA::Create(const String&) method

デフォルトの RSA アルゴリズム実装を作成します。

static SharedPtr<RSA> System::Security::Cryptography::RSA::Create(const String &alg_name)
パラメーター説明
alg_nameconst String&Must be “System.Security.Cryptography.RSACryptoServiceProvider"である必要があります。

参照

RSA::Create(int32_t) method

指定された鍵サイズでデフォルトの RSA アルゴリズム実装を作成します。

static SharedPtr<RSA> System::Security::Cryptography::RSA::Create(int32_t key_size_in_bits)
パラメーター説明
key_size_in_bitsint32_t鍵サイズ(ビット単位)。

参照