 |
Index for Section 3 |
|
 |
Alphabetical listing for C |
|
 |
Bottom of page |
|
CL_CrlGetAllCachedRecordFields(3)
NAME
CL_CrlGetAllCachedRecordFields, CSSM_CL_CrlGetAllCachedRecordFields -
Return field values from a CRL record (CDSA)
SYNOPSIS
# include <cdsa/cssm.h>
API:
CSSM_RETURN CSSMAPI CSSM_CL_CrlGetAllCachedRecordFields
(CSSM_CL_HANDLE CLHandle,
CSSM_HANDLE CrlHandle,
const CSSM_DATA *CrlRecordIndex,
uint32 *NumberOfFields,
CSSM_FIELD_PTR *Fields)
SPI:
CSSM_RETURN CSSMCLI CL_CrlGetAllCachedRecordFields
(CSSM_CL_HANDLE CLHandle,
CSSM_HANDLE CrlHandle,
const CSSM_DATA *CrlRecordIndex,
uint32 *NumberOfFields,
CSSM_FIELD_PTR *Fields)
LIBRARY
Common Security Services Manager library (libcssm.so)
PARAMETERS
CLHandle (input)
The handle that describes the add-in certificate library module
used to perform this function.
CrlHandle (input)
A handle identifying a CRL that the application has temporarily
cached with the Certificate Library module. The referenced CRL must
contain the CRL record identified by CrlRecordIndex.
CrlRecordIndex (input)
An index value identifying a particular revocation record in a
cached CRL.
NumberOfFields (output)
The number of OID-value pairs returned by this function.
Fields (output)
A pointer to an array of CSSM_FIELD structures, describing the
contents of the preselected CRL record using OID-value pairs. The
field list is allocated by the service provider and must be
deallocated by the application by calling CSSM_CL_FreeFields()
(CSSM API), or CL_FreeFields() (CL SPI).
DESCRIPTION
This function returns all field values from a prelocated, cached CRL
record. The scanned CRL record is identified by CrlRecordIndex, which is
returned by the function CSSM_CL_IsCertInCachedCrl() (CSSM API), or
CL_IsCertInCachedCrl() (CL SPI).
Fields are returned as a set of OID-value pairs. The OID identifies the CRL
record field and the data format of the value extracted from that field.
The Certificate Library module defines and uses a preferred data format for
returning field values in this function.
Each CRL record may be digitally signed when it is added to the CRL using
the function CSSM_CL_CrlAddCert() (CSSM API), or CL_CrlAddCert() (CL SPI).
This function does not perform any signature verification on the CRL
record.
RETURN VALUE
A CSSM_RETURN value indicating success or specifying a particular error
condition. The value CSSM_OK indicates success. All other values represent
an error condition.
ERRORS
Errors are described in the CDSA technical standard. See CDSA_intro(3).
CSSMERR_CL_INVALID_CACHE_HANDLE
CSSMERR_CL_INVALID_CRL_INDEX
SEE ALSO
Books
Intel CDSA Application Developer's Guide (see CDSA_intro(3))
Reference Pages
Functions for the CSSM API:
CSSM_CL_IsCertInCachedCrl(3), CSSM_CL_CrlCache(3),
CSSM_CL_CrlAbortCache(3), CSSM_CL_FreeFields(3)
Functions for the CLI SPI:
CL_IsCertInCachedCrl(3), CL_CrlCache(3), CL_CrlAbortCache(3),
CL_FreeFields(3)
 |
Index for Section 3 |
|
 |
Alphabetical listing for C |
|
 |
Top of page |
|