public DerBitString( Asn1Encodable obj) { this.data = obj.GetDerEncoded(); //this.padBits = 0; }
public override void AddObject( Asn1Encodable obj) { new DerOutputStream(_bOut).WriteObject(obj); }
/** * @param obj - a single object that makes up the set. */ public DerSet( Asn1Encodable obj) : base(1) { AddObject(obj); }