NCryptProviderName structure (ncrypt.h)

The NCryptProviderName structure is used to contain the name of a CNG key storage provider. This structure is used with the NCryptEnumStorageProviders function to return the names of the registered CNG key storage providers.

Syntax

typedef struct NCryptProviderName {
  LPWSTR pszName;
  LPWSTR pszComment;
} NCryptProviderName;

Members

pszName

A pointer to a null-terminated Unicode string that contains the name of the provider.

pszComment

A pointer to a null-terminated Unicode string that contains optional text for the provider.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2008 [desktop apps only]
Header ncrypt.h

See also

NCryptEnumStorageProviders