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