GetInstance() public static method

public static GetInstance ( Asn1TaggedObject obj, bool explicitly ) : KekRecipientInfo
obj Org.BouncyCastle.Asn1.Asn1TaggedObject
explicitly bool
return KekRecipientInfo
Ejemplo n.º 1
0
 private KekRecipientInfo GetKekInfo(Asn1TaggedObject o)
 {
     return(KekRecipientInfo.GetInstance(o, o.IsExplicit()));
 }
Ejemplo n.º 2
0
 private KekRecipientInfo GetKekInfo(
     Asn1TaggedObject o)
 {
     // For compatibility with erroneous version, we don't always pass 'false' here
     return(KekRecipientInfo.GetInstance(o, o.IsExplicit()));
 }
Ejemplo n.º 3
0
 public static KekRecipientInfo GetInstance(Asn1TaggedObject obj, bool explicitly)
 {
     return(KekRecipientInfo.GetInstance(Asn1Sequence.GetInstance(obj, explicitly)));
 }