1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/cms/CMSUtils.cs b/crypto/src/cms/CMSUtils.cs
index d84c0afd7..1e3a5734f 100644
--- a/crypto/src/cms/CMSUtils.cs
+++ b/crypto/src/cms/CMSUtils.cs
@@ -202,7 +202,7 @@ namespace Org.BouncyCastle.Cms
v.Add(seq.ToAsn1Object());
}
- return new Asn1.Cms.AttributeTable(new DerSet(v));
+ return new Asn1.Cms.AttributeTable(DerSet.FromVector(v));
}
internal static void ValidateOtherRevocationInfo(OtherRevocationInfoFormat otherRevocationInfo)
|