Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

This structure contains an OID and a pointer to its related function. It is used with the CryptInstallOIDFunctionAddressfunction.

Syntax

typedef struct _CRYPT_OID_FUNC_ENTRY {
  LPCSTR  
pszOID;
  void* 
pvFuncAddr;
} CRYPT_OID_FUNC_ENTRY, *PCRYPT_OID_FUNC_ENTRY;

Members

pszOID

If the high-order word of the OID is nonzero, this member is a pointer to either an OID string, such as 2.5.29.1 or an ASCII string, such as file. If the high-order word of the OID is zero, the low-order word specifies the numeric identifier to be used as the object identifier.

pvFuncAddr

Starting address of the function that the OID identifies.

Requirements

Header wincrypt.h
Windows Embedded CE Windows CE 3.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also