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

◆ ExportEncryptedPkcs8PrivateKey() [1/2]

override byte[] System.Security.Cryptography.ECDiffieHellmanImplementation.ECDiffieHellmanCng.ExportEncryptedPkcs8PrivateKey ( ReadOnlySpan< byte > passwordBytes,
PbeParameters pbeParameters )
inlinevirtual

Reimplemented from System.Security.Cryptography.AsymmetricAlgorithm.

Definition at line 357 of file ECDiffieHellmanImplementation.cs.

358 {
359 if (pbeParameters == null)
360 {
361 throw new ArgumentNullException("pbeParameters");
362 }
363 return CngPkcs8.ExportEncryptedPkcs8PrivateKey(this, passwordBytes, pbeParameters);
364 }

References System.Security.Cryptography.CngPkcs8.ExportEncryptedPkcs8PrivateKey().