Data Structures |
| struct | PKCS10_FIELDS |
| | Allows viewing and updating of an opaque PKCS10_OBJ. More...
|
Typedefs |
| typedef POINTER | PKCS10_OBJ |
| | Cert-C represents certificate-request information with a PKCS10_OBJ. More...
|
Functions |
| int | C_CreatePKCS10Object (CERTC_CTX ctx, PKCS10_OBJ *pkcs10Object) |
| | Creates a PKCS #10 certificate-request object. More...
|
| void | C_DestroyPKCS10Object (PKCS10_OBJ *pkcs10Object) |
| | Destroys a PKCS #10 object and frees the memory used by obj. More...
|
| int | C_GetPKCS10Fields (PKCS10_OBJ pkcs10Object, PKCS10_FIELDS *pkcs10Fields) |
| | Fills pkcs10Fields with the values found in the PKCS10_FIELDS data structure in pkcs10Object. More...
|
| int | C_SetPKCS10Fields (PKCS10_OBJ pkcs10Object, PKCS10_FIELDS *pkcs10Fields) |
| | Sets pkcs10Object to contain the value in pkcs10Fields. More...
|
| int | C_GetPKCS10DER (PKCS10_OBJ pkcs10Object, unsigned char **der, unsigned int *derLen) |
| | Obtains the DER encoding of the value of pkcs10Object, and stores a pointer to the DER encoding in pcks10DER and its length in pkcs10DERLen. More...
|
| int | C_SetPKCS10BER (PKCS10_OBJ pkcs10Object, unsigned char *ber, unsigned int berLen) |
| | Modifies the value of obj to the BER-encoded values given in certReqBER and certReqBERLen. More...
|
| int | C_SignPKCS10 (PKCS10_OBJ pkcs10Object, B_KEY_OBJ subjectPrivateKey, int signAlgorithmID) |
| | Signs a PKCS #10 object using subjectPrivateKey. More...
|
| int | C_VerifyPKCS10Signature (PKCS10_OBJ pkcs10Object) |
| | Checks the signature of the certificate in obj using the public key in obj. More...
|