9 references to PfxAsn
System.Security.Cryptography.Pkcs (9)
src\libraries\Common\src\System\Security\Cryptography\Asn1\Pkcs12\PfxAsn.xml.cs (6)
38internal static PfxAsn Decode(ReadOnlyMemory<byte> encoded, AsnEncodingRules ruleSet) 43internal static PfxAsn Decode(Asn1Tag expectedTag, ReadOnlyMemory<byte> encoded, AsnEncodingRules ruleSet) 49DecodeCore(ref reader, expectedTag, encoded, out PfxAsn decoded); 59internal static void Decode(ref AsnValueReader reader, ReadOnlyMemory<byte> rebind, out PfxAsn decoded) 64internal static void Decode(ref AsnValueReader reader, Asn1Tag expectedTag, ReadOnlyMemory<byte> rebind, out PfxAsn decoded) 76private static void DecodeCore(ref AsnValueReader reader, Asn1Tag expectedTag, ReadOnlyMemory<byte> rebind, out PfxAsn decoded)
System\Security\Cryptography\Pkcs\Pkcs12Info.cs (3)
16private PfxAsn _decoded; 56PfxAsn pfx = PfxAsn.Decode(maybeCopy, AsnEncodingRules.BER);