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

◆ Import() [4/6]

static CngKey System.Security.Cryptography.CngKey.Import ( byte[] keyBlob,
string curveName,
CngKeyBlobFormat format,
CngProvider provider )
inlinestaticpackage

Definition at line 584 of file CngKey.cs.

585 {
586 if (keyBlob == null)
587 {
588 throw new ArgumentNullException("keyBlob");
589 }
590 return Import(new ReadOnlySpan<byte>(keyBlob), curveName, format, provider);
591 }
static CngKey Import(ReadOnlySpan< byte > keyBlob, CngKeyBlobFormat format)
Definition CngKey.cs:525

References System.format, and System.Security.Cryptography.CngKey.Import().