CRYPT_OID_FUNC_ENTRY

The CRYPT_OID_FUNC_ENTRY structure contains an OID and the starting address of the routine that it correlates to. It is used with CryptInstallOIDFunctionAddress.

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 non-zero, pszOID 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
The starting address of the routine that the OID correlates to.

See Also

CryptInstallOIDFunctionAddress