1# Civetweb API Reference 2 3### `struct mg_client_cert;` 4 5### Fields 6 7| Field | Type | Description | 8| :--- | :--- | :--- | 9|**`subject`**|`const char *`| The subject of the certificate | 10|**`issuer`**|`const char *`| The issuer of the certificate | 11|**`serial`**|`const char *`| The serial number of the certificate | 12|**`finger`**|`const char *`| The fingerprint of the certificate | 13 14### Description 15 16The structure `client_cert` is used as a sub-structure in the [`mg_request_info`](mg_request_info.md) structure to store information of an optional client supplied certificate. 17 18### See Also 19 20* [`struct mg_request_info;`](mg_request_info.md) 21* [`mg_get_request_info();`](mg_get_request_info.md) 22