GetInstance() public static méthode

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