summary refs log tree commit diff
path: root/crypto/src/cms
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2021-05-24 20:46:18 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2021-05-24 20:46:18 +0700
commita3a07f74c2ae07228620cccb3c86d08d65586519 (patch)
treeac55767e867994893deee3d090ce264cf9da6ada /crypto/src/cms
parentFix project files plus portability fixes (diff)
downloadBouncyCastle.NET-ed25519-a3a07f74c2ae07228620cccb3c86d08d65586519.tar.xz
Portability fixes
Diffstat (limited to 'crypto/src/cms')
-rw-r--r--crypto/src/cms/CMSSignedHelper.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/cms/CMSSignedHelper.cs b/crypto/src/cms/CMSSignedHelper.cs
index 97ca54182..6d17200d0 100644
--- a/crypto/src/cms/CMSSignedHelper.cs
+++ b/crypto/src/cms/CMSSignedHelper.cs
@@ -440,7 +440,7 @@ namespace Org.BouncyCastle.Cms
 
 		public IX509Store GetCertificates(Asn1Set certificates)
 		{
-			ArrayList certList = new ArrayList();
+            IList certList = Platform.CreateArrayList();
 			if (certificates != null)
             {				
 				foreach (Asn1Encodable enc in certificates)