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

Pkcs12Entry

public abstract class Pkcs12Entry
using Org.BouncyCastle.Asn1; using Org.BouncyCastle.Asn1.Pkcs; using Org.BouncyCastle.Utilities.Collections; using System.Collections.Generic; namespace Org.BouncyCastle.Pkcs { public abstract class Pkcs12Entry { private readonly IDictionary<DerObjectIdentifier, Asn1Encodable> m_attributes; public Asn1Encodable this[DerObjectIdentifier oid] { get { return CollectionUtilities.GetValueOrNull(m_attributes, oid); } } public IEnumerable<DerObjectIdentifier> BagAttributeKeys => CollectionUtilities.Proxy(m_attributes.Keys); public bool HasFriendlyName => m_attributes.ContainsKey(PkcsObjectIdentifiers.Pkcs9AtFriendlyName); protected internal Pkcs12Entry(IDictionary<DerObjectIdentifier, Asn1Encodable> attributes) { m_attributes = attributes; } public void SetFriendlyName(string friendlyName) { if (HasFriendlyName) m_attributes.Remove(PkcsObjectIdentifiers.Pkcs9AtFriendlyName); m_attributes.Add(PkcsObjectIdentifiers.Pkcs9AtFriendlyName, new DerBmpString(friendlyName)); } } }