<PackageReference Include="BouncyCastle.Cryptography" Version="2.6.2" />

AttributeTableExtensions

public static class AttributeTableExtensions
using System.Collections.Generic; namespace Org.BouncyCastle.Asn1.Cms { public static class AttributeTableExtensions { public static AttributeTable ToAttributeTable(this Asn1EncodableVector v) { return new AttributeTable(v); } public static AttributeTable ToAttributeTable(this IReadOnlyCollection<Attribute> attributes) { return new AttributeTable(attributes); } public static AttributeTable ToAttributeTable(this Asn1Set s) { return new AttributeTable(s); } } }