RSAOpenSsl 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
RSAOpenSsl() |
使用隨機的 2048 位金鑰組,初始化 RSAOpenSsl 類別的新實例。 |
RSAOpenSsl(Int32) |
使用指定大小的隨機產生索引鍵,初始化 RSAOpenSsl 類別的新實例。 |
RSAOpenSsl(IntPtr) |
從以 |
RSAOpenSsl(RSAParameters) |
使用指定的索引鍵參數,初始化 RSAOpenSsl 類別的新實例。 |
RSAOpenSsl(SafeEvpPKeyHandle) |
從以 |
RSAOpenSsl()
使用隨機的 2048 位金鑰組,初始化 RSAOpenSsl 類別的新實例。
public:
RSAOpenSsl();
public RSAOpenSsl ();
[System.Runtime.Versioning.UnsupportedOSPlatform("android")]
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
[System.Runtime.Versioning.UnsupportedOSPlatform("windows")]
public RSAOpenSsl ();
Public Sub New ()
- 屬性
備註
此建構函式不會立即產生新的公開/私鑰提供者。 此建構函式會將 KeySize 屬性設定為 2048,而且需要索引鍵時,會使用 屬性值產生一個。 如果密鑰是透過 ImportParameters 方法或其他金鑰匯入方法載入,則來自這個建構函式的密鑰大小沒有任何意義。
適用於
RSAOpenSsl(Int32)
使用指定大小的隨機產生索引鍵,初始化 RSAOpenSsl 類別的新實例。
public:
RSAOpenSsl(int keySize);
public RSAOpenSsl (int keySize);
[System.Runtime.Versioning.UnsupportedOSPlatform("android")]
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
[System.Runtime.Versioning.UnsupportedOSPlatform("windows")]
public RSAOpenSsl (int keySize);
new System.Security.Cryptography.RSAOpenSsl : int -> System.Security.Cryptography.RSAOpenSsl
[<System.Runtime.Versioning.UnsupportedOSPlatform("android")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("windows")>]
new System.Security.Cryptography.RSAOpenSsl : int -> System.Security.Cryptography.RSAOpenSsl
Public Sub New (keySize As Integer)
參數
- keySize
- Int32
要以位產生之金鑰的大小。
- 屬性
例外狀況
keySize
無效。
適用於
RSAOpenSsl(IntPtr)
從以 RSA*
表示的現有 OpenSSL 索引鍵,初始化 RSAOpenSsl 類別的新實例。
public:
RSAOpenSsl(IntPtr handle);
public RSAOpenSsl (IntPtr handle);
[System.Runtime.Versioning.UnsupportedOSPlatform("android")]
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
[System.Runtime.Versioning.UnsupportedOSPlatform("windows")]
public RSAOpenSsl (IntPtr handle);
new System.Security.Cryptography.RSAOpenSsl : nativeint -> System.Security.Cryptography.RSAOpenSsl
[<System.Runtime.Versioning.UnsupportedOSPlatform("android")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("windows")>]
new System.Security.Cryptography.RSAOpenSsl : nativeint -> System.Security.Cryptography.RSAOpenSsl
Public Sub New (handle As IntPtr)
參數
- handle
-
IntPtr
nativeint
要當做索引鍵使用的 OpenSSL RSA*
值。
- 屬性
例外狀況
handle
不是有效的 RSA*
。
handle
無效
備註
重要
OpenSSL 支援在相同進程中載入多個連結庫版本。 呼叫此建構函式之前,請確認您的指標值來自這個類別所使用的相同 OpenSSL 版本。 如需詳細資訊,請參閱 OpenSslVersion。
適用於
RSAOpenSsl(RSAParameters)
使用指定的索引鍵參數,初始化 RSAOpenSsl 類別的新實例。
public:
RSAOpenSsl(System::Security::Cryptography::RSAParameters parameters);
public RSAOpenSsl (System.Security.Cryptography.RSAParameters parameters);
[System.Runtime.Versioning.UnsupportedOSPlatform("android")]
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
[System.Runtime.Versioning.UnsupportedOSPlatform("windows")]
public RSAOpenSsl (System.Security.Cryptography.RSAParameters parameters);
new System.Security.Cryptography.RSAOpenSsl : System.Security.Cryptography.RSAParameters -> System.Security.Cryptography.RSAOpenSsl
[<System.Runtime.Versioning.UnsupportedOSPlatform("android")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("windows")>]
new System.Security.Cryptography.RSAOpenSsl : System.Security.Cryptography.RSAParameters -> System.Security.Cryptography.RSAOpenSsl
Public Sub New (parameters As RSAParameters)
參數
- parameters
- RSAParameters
索引鍵的參數。
- 屬性
例外狀況
parameters
不是有效的 RSA 金鑰。
備註
這個建構函式相當於使用預設建構函式,並呼叫 ImportParameters。
適用於
RSAOpenSsl(SafeEvpPKeyHandle)
從以 EVP_PKEY*
表示的現有 OpenSSL 索引鍵,初始化 RSAOpenSsl 類別的新實例。
public:
RSAOpenSsl(System::Security::Cryptography::SafeEvpPKeyHandle ^ pkeyHandle);
public RSAOpenSsl (System.Security.Cryptography.SafeEvpPKeyHandle pkeyHandle);
[System.Runtime.Versioning.UnsupportedOSPlatform("android")]
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
[System.Runtime.Versioning.UnsupportedOSPlatform("windows")]
public RSAOpenSsl (System.Security.Cryptography.SafeEvpPKeyHandle pkeyHandle);
new System.Security.Cryptography.RSAOpenSsl : System.Security.Cryptography.SafeEvpPKeyHandle -> System.Security.Cryptography.RSAOpenSsl
[<System.Runtime.Versioning.UnsupportedOSPlatform("android")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("windows")>]
new System.Security.Cryptography.RSAOpenSsl : System.Security.Cryptography.SafeEvpPKeyHandle -> System.Security.Cryptography.RSAOpenSsl
Public Sub New (pkeyHandle As SafeEvpPKeyHandle)
參數
- pkeyHandle
- SafeEvpPKeyHandle
要當做索引鍵使用的 OpenSSL EVP_PKEY*
值,以 SafeEvpPKeyHandle表示。
- 屬性
例外狀況
pkeyHandle
不代表 RSA 金鑰。
pkeyHandle
null
根據 IsInvalid,pkeyHandle
無效。
備註
在 .NET 9 和更新版本中,pkeyHandle
的外部修改也會影響儲存在此建構函式所建立實例中的句柄。
重要
OpenSSL 支援在相同進程中載入多個連結庫版本。 呼叫此建構函式之前,請確認您的指標值來自這個類別所使用的相同 OpenSSL 版本。 如需詳細資訊,請參閱 OpenSslVersion。