Share via


CertFindAttribute

This function finds the first attribute in the CRYPT_ATTRIBUTE array, as identified by its object identifier (OID). This function can be used in the processing of a decoded certificate request. A CERT_REQUEST_INFO structure is derived from a decoded certificate request. The rgAttribute array is retrieved from that structure and passed to this function in the rgAttr parameter. This function determines whether a particular attribute is in the array, and if so, returns a pointer to it.

PCRYPT_ATTRIBUTE WINAPI CertFindAttribute(
  LPCSTR pszObjId,
  DWORD cAttr,
  CRYPT_ATTRIBUTE rgAttr[ ]
);

Parameters

  • pszObjId
    [in] Pointer to the OID to use in the search.
  • cAttr
    [in] Number of attributes in the rgAttr array.
  • rgAttr
    [in] Array of CRYPT_ATTRIBUTE structures.

Return Values

This function returns a pointer to the attribute, if one is found. Otherwise, NULL is returned.

Requirements

OS Versions: Windows CE 3.0 and later.
Header: Wincrypt.h.
Link Library: Crypt32.lib.

See Also

CertFindExtension | CertFindRDNAttr | CERT_REQUEST_INFO | CRYPT_ATTRIBUTE

 Last updated on Thursday, April 08, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.