ECDsaCng.ImportParameters(ECParameters) Method

Definition

Replaces the existing key that the current instance is working with by creating a new CngKey for the parameters structure.

public:
 override void ImportParameters(System::Security::Cryptography::ECParameters parameters);
public override void ImportParameters (System.Security.Cryptography.ECParameters parameters);
override this.ImportParameters : System.Security.Cryptography.ECParameters -> unit
Public Overrides Sub ImportParameters (parameters As ECParameters)

Parameters

parameters
ECParameters

The curve parameters.

Exceptions

parameters does not contain valid values.

parameters references a curve that cannot be imported.

parameters references a curve that is not supported by this platform.

Remarks

If parameters contains only Q, only a public key is imported. If parameters also contains D, a full key pair is imported. The Curve field specifies the type of the curve to import.

Applies to