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

◆ DecodeCore() [1/2]

static void System.Security.Cryptography.Asn1.PBES2Params.DecodeCore ( ref AsnValueReader reader,
Asn1Tag expectedTag,
ReadOnlyMemory< byte > rebind,
out PBES2Params decoded )
inlinestaticprivate

Definition at line 31 of file PBES2Params.cs.

32 {
33 decoded = default(PBES2Params);
34 AsnValueReader reader2 = reader.ReadSequence(expectedTag);
35 AlgorithmIdentifierAsn.Decode(ref reader2, rebind, out decoded.KeyDerivationFunc);
36 AlgorithmIdentifierAsn.Decode(ref reader2, rebind, out decoded.EncryptionScheme);
37 reader2.ThrowIfNotEmpty();
38 }
AsnValueReader ReadSequence(Asn1Tag? expectedTag=null)

References System.Security.Cryptography.Asn1.AlgorithmIdentifierAsn.Decode(), System.Formats.Asn1.AsnValueReader.ReadSequence(), and System.Formats.Asn1.AsnValueReader.ThrowIfNotEmpty().

Referenced by System.Security.Cryptography.Asn1.PBES2Params.Decode().