<PackageReference Include="System.Security.Cryptography.Pkcs" Version="11.0.0-preview.5.26302.115" />

System.Security.Cryptography.Pkcs.AlgorithmIdentifier

public sealed class AlgorithmIdentifier
The AlgorithmIdentifier class defines the algorithm used for a cryptographic operation.
namespace System.Security.Cryptography.Pkcs { public sealed class AlgorithmIdentifier { public Oid Oid { get; set; } public int KeyLength { get; set; } public byte[] Parameters { get; set; } public AlgorithmIdentifier(); public AlgorithmIdentifier(Oid oid); public AlgorithmIdentifier(Oid oid, int keyLength); } }