Exemplo n.º 1
0
    public static OtherRecipientInfo GetInstance(object obj)
    {
        if (obj == null)
        {
            return(null);
        }
        OtherRecipientInfo otherRecipientInfo = obj as OtherRecipientInfo;

        if (otherRecipientInfo != null)
        {
            return(otherRecipientInfo);
        }
        return(new OtherRecipientInfo(Asn1Sequence.GetInstance(obj)));
    }
Exemplo n.º 2
0
 public RecipientInfo(OtherRecipientInfo info)
 {
     this.info = new DerTaggedObject(explicitly: false, 4, info);
 }