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

◆ ReadPkcs8()

static void System.Security.Cryptography.DSAKeyFormatHelper.ReadPkcs8 ( ReadOnlySpan< byte > source,
out int bytesRead,
out DSAParameters key )
inlinestaticpackage

Definition at line 78 of file DSAKeyFormatHelper.cs.

79 {
80 KeyFormatHelper.ReadPkcs8(s_validOids, source, (KeyFormatHelper.KeyReader<DSAParameters>)ReadDsaPrivateKey, out bytesRead, out key);
81 }
static void ReadDsaPrivateKey(ReadOnlyMemory< byte > xBytes, in AlgorithmIdentifierAsn algId, out DSAParameters ret)

References System.key, System.Security.Cryptography.DSAKeyFormatHelper.ReadDsaPrivateKey(), System.Security.Cryptography.KeyFormatHelper.ReadPkcs8(), System.Security.Cryptography.DSAKeyFormatHelper.s_validOids, and System.source.

Referenced by System.Security.Cryptography.DSA.ImportPkcs8PrivateKey().