summary refs log tree commit diff
path: root/crypto
diff options
context:
space:
mode:
authorOren Novotny <oren@novotny.org>2019-02-07 19:55:16 -0500
committerOren Novotny <oren@novotny.org>2019-02-07 19:55:16 -0500
commit7c84121dcd71fed6cb7ac274e186c83f0e0877ee (patch)
tree73adffe4fda946f445e7bb9357b8eb55bf29c641 /crypto
parentPrep 1.8.5 (diff)
downloadBouncyCastle.NET-ed25519-7c84121dcd71fed6cb7ac274e186c83f0e0877ee.tar.xz
Fix invalid cast in test pcl-v1.8.5
Diffstat (limited to 'crypto')
-rw-r--r--crypto/test/src/crmf/test/CrmfTest.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/test/src/crmf/test/CrmfTest.cs b/crypto/test/src/crmf/test/CrmfTest.cs
index 8211fe1c4..042e2d4c1 100644
--- a/crypto/test/src/crmf/test/CrmfTest.cs
+++ b/crypto/test/src/crmf/test/CrmfTest.cs
@@ -156,7 +156,7 @@ namespace Org.BouncyCastle.Crmf.Tests
             IsTrue(archiveControl.EnvelopedData);
             RecipientInformationStore recips = archiveControl.GetEnvelopedData().GetRecipientInfos();
 
-            ArrayList collection =  (ArrayList)recips.GetRecipients();
+            IList collection =  (IList)recips.GetRecipients();
 
             IsTrue(collection.Count == 1);
             KeyTransRecipientInformation info = (KeyTransRecipientInformation)collection[0];