System.Security.Cryptography.CngProvider
Encapsulates the name of a key storage provider (KSP) for use with Cryptography Next Generation (CNG) objects.
namespace System.Security.Cryptography
{
public sealed class CngProvider : IEquatable<CngProvider>
{
public static CngProvider MicrosoftSmartCardKeyStorageProvider { get; }
public static CngProvider MicrosoftSoftwareKeyStorageProvider { get; }
public string Provider { get; }
public CngProvider(string provider);
public bool Equals(CngProvider other);
public static bool operator ==(CngProvider left, CngProvider right);
public static bool operator !=(CngProvider left, CngProvider right);
}
}