ECDiffieHellmanPublicKey Constructores

Definición

Sobrecargas

ECDiffieHellmanPublicKey()

Inicializa una nueva instancia de la clase ECDiffieHellmanPublicKey.

ECDiffieHellmanPublicKey(Byte[])
Obsoleto.

Inicializa una nueva instancia de la clase ECDiffieHellmanPublicKey.

ECDiffieHellmanPublicKey()

Inicializa una nueva instancia de la clase ECDiffieHellmanPublicKey.

protected:
 ECDiffieHellmanPublicKey();
protected ECDiffieHellmanPublicKey ();
Protected Sub New ()

Se aplica a

ECDiffieHellmanPublicKey(Byte[])

Precaución

ECDiffieHellmanPublicKey.ToByteArray() and the associated constructor do not have a consistent and interoperable implementation on all platforms. Use ECDiffieHellmanPublicKey.ExportSubjectPublicKeyInfo() instead.

Inicializa una nueva instancia de la clase ECDiffieHellmanPublicKey.

protected:
 ECDiffieHellmanPublicKey(cli::array <System::Byte> ^ keyBlob);
protected ECDiffieHellmanPublicKey (byte[] keyBlob);
[System.Obsolete("ECDiffieHellmanPublicKey.ToByteArray() and the associated constructor do not have a consistent and interoperable implementation on all platforms. Use ECDiffieHellmanPublicKey.ExportSubjectPublicKeyInfo() instead.", DiagnosticId="SYSLIB0043", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected ECDiffieHellmanPublicKey (byte[] keyBlob);
new System.Security.Cryptography.ECDiffieHellmanPublicKey : byte[] -> System.Security.Cryptography.ECDiffieHellmanPublicKey
[<System.Obsolete("ECDiffieHellmanPublicKey.ToByteArray() and the associated constructor do not have a consistent and interoperable implementation on all platforms. Use ECDiffieHellmanPublicKey.ExportSubjectPublicKeyInfo() instead.", DiagnosticId="SYSLIB0043", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.Security.Cryptography.ECDiffieHellmanPublicKey : byte[] -> System.Security.Cryptography.ECDiffieHellmanPublicKey
Protected Sub New (keyBlob As Byte())

Parámetros

keyBlob
Byte[]

Matriz de bytes que representa un objeto ECDiffieHellmanPublicKey.

Atributos

Excepciones

keyBlob es null.

Comentarios

Las clases que derivan de la ECDiffieHellmanPublicKey clase llaman a este constructor. La ECDiffieHellmanCngPublicKey clase es la única implementación admitida actualmente.

Se aplica a