diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2021-05-24 20:46:18 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2021-05-24 20:46:18 +0700 |
commit | a3a07f74c2ae07228620cccb3c86d08d65586519 (patch) | |
tree | ac55767e867994893deee3d090ce264cf9da6ada /crypto/src/cms | |
parent | Fix project files plus portability fixes (diff) | |
download | BouncyCastle.NET-ed25519-a3a07f74c2ae07228620cccb3c86d08d65586519.tar.xz |
Portability fixes
Diffstat (limited to 'crypto/src/cms')
-rw-r--r-- | crypto/src/cms/CMSSignedHelper.cs | 2 |
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) |