CRYPT_KEY_PROV_PARAM

This structure contains data to be passed as the arguments to the CryptSetProvParam function. This structure is pointed to by the elements of the rgProvParam array in the CRYPT_KEY_PROV_INFO structure.

typedef struct _CRYPT_KEY_PROV_PARAM {
DWORD dwParam;
BYTE* pbData;
DWORD cbData;
DWORD dwFlags;
} CRYPT_KEY_PROV_PARAM,  *PCRYPT_KEY_PROV_PARAM;

Members

  • dwParam
    Number of the parameter to set.
  • pbData
    Pointer to an array of bytes.
  • cbData
    Size, in bytes, of pbData.
  • dwFlags
    This member is reserved for future use and is zero.

Requirements

Runs on Versions Defined in Include Link to
Windows CE OS 3.0 or later Wincrypt.h    

Note   This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.

See Also

CryptSetProvParam, CRYPT_KEY_PROV_INFO

 Last updated on Tuesday, July 13, 2004

© 1992-2000 Microsoft Corporation. All rights reserved.