Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ExportExplicitParameters()

override ECParameters System.Security.Cryptography.ECDiffieHellmanImplementation.ECDiffieHellmanCngPublicKey.ExportExplicitParameters ( )
inlinevirtual

Reimplemented from System.Security.Cryptography.ECDiffieHellmanPublicKey.

Definition at line 429 of file ECDiffieHellmanImplementation.cs.

430 {
431 if (_keyBlob == null)
432 {
433 throw new ObjectDisposedException("ECDiffieHellmanPublicKey");
434 }
435 ECParameters ecParams = default(ECParameters);
436 ECCng.ExportPrimeCurveParameters(ref ecParams, _keyBlob, includePrivateParameters: false);
437 return ecParams;
438 }

References System.Security.Cryptography.ECDiffieHellmanImplementation.ECDiffieHellmanCngPublicKey._keyBlob, and System.Security.Cryptography.ECCng.ExportPrimeCurveParameters().

Referenced by System.Security.Cryptography.ECDiffieHellmanImplementation.ECDiffieHellmanCngPublicKey.ExportParameters().