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

RecipientEncryptedKey() private method

private RecipientEncryptedKey ( Asn1Sequence seq ) : System
seq Asn1Sequence
return System
		private RecipientEncryptedKey(
			Asn1Sequence seq)
		{
			identifier = KeyAgreeRecipientIdentifier.GetInstance(seq[0]);
			encryptedKey = (Asn1OctetString) seq[1];
		}

Same methods

RecipientEncryptedKey::RecipientEncryptedKey ( KeyAgreeRecipientIdentifier id, Asn1OctetString encryptedKey ) : System