RSAPKCS1KeyExchangeFormatter Constructores

Definición

Inicializa una nueva instancia de la clase RSAPKCS1KeyExchangeFormatter.

Sobrecargas

RSAPKCS1KeyExchangeFormatter()

Inicializa una nueva instancia de la clase RSAPKCS1KeyExchangeFormatter.

RSAPKCS1KeyExchangeFormatter(AsymmetricAlgorithm)

Inicializa una nueva instancia de la clase RSAPKCS1KeyExchangeFormatter con la clave especificada.

RSAPKCS1KeyExchangeFormatter()

Inicializa una nueva instancia de la clase RSAPKCS1KeyExchangeFormatter.

public:
 RSAPKCS1KeyExchangeFormatter();
public RSAPKCS1KeyExchangeFormatter ();
Public Sub New ()

Comentarios

Use SetKey el método para establecer la clave que se usará para el intercambio de claves antes de llamar a CreateKeyExchange.

Consulte también

Se aplica a

RSAPKCS1KeyExchangeFormatter(AsymmetricAlgorithm)

Inicializa una nueva instancia de la clase RSAPKCS1KeyExchangeFormatter con la clave especificada.

public:
 RSAPKCS1KeyExchangeFormatter(System::Security::Cryptography::AsymmetricAlgorithm ^ key);
public RSAPKCS1KeyExchangeFormatter (System.Security.Cryptography.AsymmetricAlgorithm key);
new System.Security.Cryptography.RSAPKCS1KeyExchangeFormatter : System.Security.Cryptography.AsymmetricAlgorithm -> System.Security.Cryptography.RSAPKCS1KeyExchangeFormatter
Public Sub New (key As AsymmetricAlgorithm)

Parámetros

key
AsymmetricAlgorithm

Instancia del algoritmo RSA que contiene la clave pública.

Excepciones

key es null.

Consulte también

Se aplica a