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

◆ DecodeDssParameters()

static unsafe void Internal.Cryptography.Pal.X509Pal.DecodeDssParameters ( byte[] encodedParameters,
out byte[] p,
out byte[] q,
out byte[] g )
inlinestaticprivate

Definition at line 411 of file X509Pal.cs.

412 {
413 (p, q, g) = encodedParameters.DecodeObject(CryptDecodeObjectStructType.X509_DSS_PARAMETERS, (void* pvDecoded, int cbDecoded) => (((CERT_DSS_PARAMETERS*)pvDecoded)->p.ToByteArray(), ((CERT_DSS_PARAMETERS*)pvDecoded)->q.ToByteArray(), ((CERT_DSS_PARAMETERS*)pvDecoded)->g.ToByteArray()));
414 }

Referenced by Internal.Cryptography.Pal.X509Pal.ConstructDSSPublicKeyCspBlob().