summary refs log tree commit diff
path: root/crypto/src/cms/RecipientInformationStore.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/cms/RecipientInformationStore.cs')
-rw-r--r--crypto/src/cms/RecipientInformationStore.cs27
1 files changed, 10 insertions, 17 deletions
diff --git a/crypto/src/cms/RecipientInformationStore.cs b/crypto/src/cms/RecipientInformationStore.cs
index 281b51c79..9b455124c 100644
--- a/crypto/src/cms/RecipientInformationStore.cs
+++ b/crypto/src/cms/RecipientInformationStore.cs
@@ -1,11 +1,9 @@
-using System;
 using System.Collections.Generic;
 
-using Org.BouncyCastle.Utilities;
-
 namespace Org.BouncyCastle.Cms
 {
-	public class RecipientInformationStore
+    public class RecipientInformationStore
+		: IEnumerable<RecipientInformation>
 	{
 		private readonly IList<RecipientInformation> m_all;
 		private readonly IDictionary<RecipientID, IList<RecipientInformation>> m_table =
@@ -28,10 +26,7 @@ namespace Org.BouncyCastle.Cms
             m_all = new List<RecipientInformation>(recipientInfos);
 		}
 
-		public RecipientInformation this[RecipientID selector]
-		{
-			get { return GetFirstRecipient(selector); }
-		}
+		public RecipientInformation this[RecipientID selector] => GetFirstRecipient(selector);
 
 		/**
 		* Return the first RecipientInformation object that matches the
@@ -53,20 +48,14 @@ namespace Org.BouncyCastle.Cms
 		*
 		* @return number of recipients identified.
 		*/
-		public int Count
-		{
-			get { return m_all.Count; }
-		}
+		public int Count => m_all.Count;
 
 		/**
 		* Return all recipients in the collection
 		*
 		* @return a collection of recipients.
 		*/
-		public IList<RecipientInformation> GetRecipients()
-		{
-			return new List<RecipientInformation>(m_all);
-		}
+		public IList<RecipientInformation> GetRecipients() => new List<RecipientInformation>(m_all);
 
 		/**
 		* Return possible empty collection with recipients matching the passed in RecipientID
@@ -81,5 +70,9 @@ namespace Org.BouncyCastle.Cms
 
 			return new List<RecipientInformation>(list);
 		}
-	}
+
+        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() => GetEnumerator();
+
+        public IEnumerator<RecipientInformation> GetEnumerator() => GetRecipients().GetEnumerator();
+    }
 }