- added CredentialGuard check - added Named Pipes enumeration - added Printers enumeration - added SysMon enumeration - added Logon Sessions enumeration - added SuperPutty config files check - added Oracle SQL Developer Config files check - added AMSI providers check - added SCCM check - fixed output formatting
28 lines
529 B
C#
28 lines
529 B
C#
namespace winPEAS._3rdParty.BouncyCastle.asn1
|
|
{
|
|
public class BerApplicationSpecificParser
|
|
: IAsn1ApplicationSpecificParser
|
|
{
|
|
private readonly int tag;
|
|
private readonly Asn1StreamParser parser;
|
|
|
|
internal BerApplicationSpecificParser(
|
|
int tag,
|
|
Asn1StreamParser parser)
|
|
{
|
|
this.tag = tag;
|
|
this.parser = parser;
|
|
}
|
|
|
|
public IAsn1Convertible ReadObject()
|
|
{
|
|
return parser.ReadObject();
|
|
}
|
|
|
|
public Asn1Object ToAsn1Object()
|
|
{
|
|
return new BerApplicationSpecific(tag, parser.ReadVector());
|
|
}
|
|
}
|
|
}
|