GetBodyForType() private static method

private static GetBodyForType ( int type, Asn1Encodable o ) : Asn1Encodable
type int
o Asn1Encodable
return Asn1Encodable
Exemplo n.º 1
0
 private PkiBody(Asn1TaggedObject tagged)
 {
     this.tagNo = tagged.TagNo;
     this.body  = PkiBody.GetBodyForType(this.tagNo, tagged.GetObject());
 }
Exemplo n.º 2
0
 public PkiBody(int type, Asn1Encodable content)
 {
     this.tagNo = type;
     this.body  = PkiBody.GetBodyForType(type, content);
 }