| RSA BSAFE Cert-C |
Certificate Components for C |
| Crypto-C 6.2.1 Developer's Guide | ||
| Search |
It indicates the policy under which the certificate was issued and the purposes for which the certificate can be used. Applications with specific policy requirements can check the policyID to determine whether or not the certificate is acceptable. The default criticality for this extension is NON_CRITICAL. A certificate can have multiple Certificate Policies extensions at the same time. Use this structure with C_AddExtensionValue() and C_GetExtensionValue().
#include <certext.h>
typedef struct POLICY_INFO { ITEM policyID; unsigned int qualifierInfoCount; QualifierInfo *qualifierInfo; } POLICY_INFO;
Data Fields | |
| ITEM | policyID |
An ITEM structure whose data member points to the certificate policy's OID. | |
| unsigned int | qualifierInfoCount |
An unsigned int value that indicates the number of policy qualifiers in the qualifierInfo array. | |
| QualifierInfo* | qualifierInfo |
A pointer to a QualifierInfo array that contains policy qualifier information. More... | |
|
|
A pointer to a |