2 types derived from RecipientInfo
System.Security.Cryptography.Pkcs (2)
System\Security\Cryptography\Pkcs\KeyAgreeRecipientInfo.cs (1)
12public sealed class KeyAgreeRecipientInfo : RecipientInfo
System\Security\Cryptography\Pkcs\KeyTransRecipientInfo.cs (1)
11public sealed class KeyTransRecipientInfo : RecipientInfo
17 references to RecipientInfo
System.Security (1)
System.Security.cs (1)
24[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.Pkcs.RecipientInfo))]
System.Security.Cryptography.Pkcs (16)
Internal\Cryptography\DecryptorPal.cs (1)
34RecipientInfo recipientInfo,
Internal\Cryptography\Pal\AnyOS\ManagedPal.Decode.cs (1)
55var recipientInfos = new List<RecipientInfo>();
Internal\Cryptography\Pal\AnyOS\ManagedPal.Decrypt.cs (1)
33RecipientInfo recipientInfo,
System\Security\Cryptography\Pkcs\EnvelopedCms.cs (4)
188public void Decrypt(RecipientInfo recipientInfo) 198public void Decrypt(RecipientInfo recipientInfo, X509Certificate2Collection extraStore) 222public void Decrypt(RecipientInfo recipientInfo, AsymmetricAlgorithm? privateKey) 259foreach (RecipientInfo recipientInfo in recipientInfos)
System\Security\Cryptography\Pkcs\RecipientInfoCollection.cs (8)
15_recipientInfos = Array.Empty<RecipientInfo>(); 18internal RecipientInfoCollection(RecipientInfo recipientInfo) 20_recipientInfos = new RecipientInfo[] { recipientInfo }; 23internal RecipientInfoCollection(ICollection<RecipientInfo> recipientInfos) 25_recipientInfos = new RecipientInfo[recipientInfos.Count]; 29public RecipientInfo this[int index] 77public void CopyTo(RecipientInfo[] array, int index) 105private readonly RecipientInfo[] _recipientInfos;
System\Security\Cryptography\Pkcs\RecipientInfoEnumerator.cs (1)
18public RecipientInfo Current