blob: 33b472f9d9b2032dab86a371f995bd2b44db8ff3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
using System;
using System.Collections;
using Org.BouncyCastle.Utilities;
namespace Org.BouncyCastle.Cms
{
public class RecipientInformationStore
{
private readonly IList all; //ArrayList[RecipientInformation]
private readonly IDictionary table = Platform.CreateHashtable(); // Hashtable[RecipientID, ArrayList[RecipientInformation]]
public RecipientInformationStore(
ICollection recipientInfos)
{
foreach (RecipientInformation recipientInformation in recipientInfos)
{
RecipientID rid = recipientInformation.RecipientID;
IList list = (IList)table[rid];
if (list == null)
{
table[rid] = list = Platform.CreateArrayList(1);
}
list.Add(recipientInformation);
}
this.all = Platform.CreateArrayList(recipientInfos);
}
public RecipientInformation this[RecipientID selector]
{
get { return GetFirstRecipient(selector); }
}
/**
* Return the first RecipientInformation object that matches the
* passed in selector. Null if there are no matches.
*
* @param selector to identify a recipient
* @return a single RecipientInformation object. Null if none matches.
*/
public RecipientInformation GetFirstRecipient(
RecipientID selector)
{
IList list = (IList) table[selector];
return list == null ? null : (RecipientInformation) list[0];
}
/**
* Return the number of recipients in the collection.
*
* @return number of recipients identified.
*/
public int Count
{
get { return all.Count; }
}
/**
* Return all recipients in the collection
*
* @return a collection of recipients.
*/
public ICollection GetRecipients()
{
return Platform.CreateArrayList(all);
}
/**
* Return possible empty collection with recipients matching the passed in RecipientID
*
* @param selector a recipient id to select against.
* @return a collection of RecipientInformation objects.
*/
public ICollection GetRecipients(
RecipientID selector)
{
IList list = (IList)table[selector];
return list == null ? Platform.CreateArrayList() : Platform.CreateArrayList(list);
}
}
}
|