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

◆ ExportEncryptedPkcs8PrivateKey() [1/2]

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

Reimplemented from System.Security.Cryptography.AsymmetricAlgorithm.

Definition at line 608 of file ECDiffieHellmanCng.cs.

609 {
610 if (pbeParameters == null)
611 {
612 throw new ArgumentNullException("pbeParameters");
613 }
614 return System.Security.Cryptography.CngPkcs8.ExportEncryptedPkcs8PrivateKey(this, passwordBytes, pbeParameters);
615 }
static byte[] ExportEncryptedPkcs8PrivateKey(AsymmetricAlgorithm key, ReadOnlySpan< byte > passwordBytes, PbeParameters pbeParameters)
Definition CngPkcs8.cs:53

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