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

◆ ExportKeyBlob()

byte[] System.Security.Cryptography.DSACng.ExportKeyBlob ( bool includePrivateParameters)
inlineprivate

Definition at line 67 of file DSACng.cs.

68 {
69 CngKeyBlobFormat format = (includePrivateParameters ? CngKeyBlobFormat.GenericPrivateBlob : CngKeyBlobFormat.GenericPublicBlob);
70 return Key.Export(format);
71 }
byte[] Export(CngKeyBlobFormat format)
Definition CngKey.cs:622

References System.Security.Cryptography.CngKey.Export(), System.format, System.Security.Cryptography.CngKeyBlobFormat.GenericPublicBlob, and System.Security.Cryptography.DSACng.Key.

Referenced by System.Security.Cryptography.DSACng.ComputeQLength(), and System.Security.Cryptography.DSACng.ExportParameters().