Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey.GetInstance C# (CSharp) Method

GetInstance() public static method

public static GetInstance ( Asn1TaggedObject obj, bool isExplicit ) : RecipientEncryptedKey
obj Asn1TaggedObject
isExplicit bool
return RecipientEncryptedKey
		public static RecipientEncryptedKey GetInstance(
			Asn1TaggedObject	obj,
			bool				isExplicit)
		{
			return GetInstance(Asn1Sequence.GetInstance(obj, isExplicit));
		}

Same methods

RecipientEncryptedKey::GetInstance ( object obj ) : RecipientEncryptedKey

Usage Example

Example #1
0
 public static RecipientEncryptedKey GetInstance(Asn1TaggedObject obj, bool isExplicit)
 {
     return(RecipientEncryptedKey.GetInstance(Asn1Sequence.GetInstance(obj, isExplicit)));
 }