Ejemplo n.º 1
0
		public RecipientEncryptedKey(
			KeyAgreeRecipientIdentifier	id,
			Asn1OctetString				encryptedKey)
		{
			this.identifier = id;
			this.encryptedKey = encryptedKey;
		}
Ejemplo n.º 2
0
 public RecipientEncryptedKey(
     KeyAgreeRecipientIdentifier id,
     Asn1OctetString encryptedKey)
 {
     this.identifier   = id;
     this.encryptedKey = encryptedKey;
 }
Ejemplo n.º 3
0
		private RecipientEncryptedKey(
			Asn1Sequence seq)
		{
			identifier = KeyAgreeRecipientIdentifier.GetInstance(seq[0]);
			encryptedKey = (Asn1OctetString) seq[1];
		}
Ejemplo n.º 4
0
 private RecipientEncryptedKey(
     Asn1Sequence seq)
 {
     identifier   = KeyAgreeRecipientIdentifier.GetInstance(seq[0]);
     encryptedKey = (Asn1OctetString)seq[1];
 }