ExportParameters() public method

When overridden in a derived class, exports the named or explicit ECParameters for an ECCurve. If the curve has a name, the Curve property will contain named curve parameters otherwise it will contain explicit parameters.
public ExportParameters ( bool includePrivateParameters ) : System.Security.Cryptography.ECParameters
includePrivateParameters bool true to include private parameters, otherwise, false.
return System.Security.Cryptography.ECParameters
Beispiel #1
0
 public override ECParameters ExportParameters(bool includePrivateParameters) =>
 _wrapped.ExportParameters(includePrivateParameters);