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

◆ TryExportEncryptedPkcs8()

bool System.Security.Cryptography.ECDiffieHellmanCng.TryExportEncryptedPkcs8 ( ReadOnlySpan< char > pkcs8Password,
int kdfCount,
Span< byte > destination,
out int bytesWritten )
inlineprivate

Definition at line 234 of file ECDiffieHellmanCng.cs.

235 {
236 return Key.TryExportPkcs8KeyBlob(pkcs8Password, kdfCount, destination, out bytesWritten);
237 }
bool TryExportPkcs8KeyBlob(ReadOnlySpan< char > password, int kdfCount, Span< byte > destination, out int bytesWritten)
Definition CngKey.cs:673

References System.destination, System.Security.Cryptography.ECDiffieHellmanCng.Key, and System.Security.Cryptography.CngKey.TryExportPkcs8KeyBlob().

Referenced by System.Security.Cryptography.ECDiffieHellmanCng.TryExportEncryptedPkcs8PrivateKey().