CngProvider Class

Definition

Encapsulates the name of a key storage provider (KSP) for use with Cryptography Next Generation (CNG) objects.

public ref class CngProvider sealed : IEquatable<System::Security::Cryptography::CngProvider ^>
public sealed class CngProvider : IEquatable<System.Security.Cryptography.CngProvider>
[System.Serializable]
public sealed class CngProvider : IEquatable<System.Security.Cryptography.CngProvider>
type CngProvider = class
    interface IEquatable<CngProvider>
[<System.Serializable>]
type CngProvider = class
    interface IEquatable<CngProvider>
Public NotInheritable Class CngProvider
Implements IEquatable(Of CngProvider)
Inheritance
CngProvider
Attributes
Implements

Remarks

The CngProvider class is a utility class. It consists of static properties, comparison methods, and a private, internally maintained string that specifies a key storage provider.

The static properties return CngProvider objects. Each object's internal string is initialized to the provider name that corresponds to the name of the static property.

You can also use this class to create objects for provider types that are not covered by the static properties.

Several CNG classes (such as CngKey) accept CngProvider objects through a provider parameter. When the class receives the CngProvider object, it retrieves the embedded provider name by calling the object's Provider property.

Therefore, CngProvider serves as an enumeration of well-known providers. It lets you identify a provider by using a strongly typed value instead of a string.

Note

CNG classes don't work on non-Windows platforms.

Constructors

CngProvider(String)

Initializes a new instance of the CngProvider class.

Properties

MicrosoftPlatformCryptoProvider

Gets a CngProvider object that specifies the Microsoft Platform Crypto Storage Provider.

MicrosoftSmartCardKeyStorageProvider

Gets a CngProvider object that specifies the Microsoft Smart Card Key Storage Provider.

MicrosoftSoftwareKeyStorageProvider

Gets a CngProvider object that specifies the Microsoft Software Key Storage Provider.

Provider

Gets the name of the key storage provider (KSP) that the current CngProvider object specifies.

Methods

Equals(CngProvider)

Compares the specified CngProvider object to the current CngProvider object.

Equals(Object)

Compares the specified object to the current CngProvider object.

GetHashCode()

Generates a hash value for the name of the key storage provider (KSP) that is embedded in the current CngProvider object.

GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Gets the name of the key storage provider (KSP) that the current CngProvider object specifies.

Operators

Equality(CngProvider, CngProvider)

Determines whether two CngProvider objects specify the same key storage provider (KSP).

Inequality(CngProvider, CngProvider)

Determines whether two CngProvider objects do not represent the same key storage provider (KSP).

Applies to