Functions |
| int R_CDECL | R_CERT_NAME_new (R_CERT_CTX *cert_ctx, R_CERT_NAME **name) |
| | Creates a new R_CERT_NAME structure and initializes the default values. More...
|
| int R_CDECL | R_CERT_NAME_free (R_CERT_NAME *name) |
| | Removes all allocated memory for the R_CERT_NAME structure name including all R_CERT_NAME_ENTRY structures contained in name. More...
|
| int R_CDECL | R_CERT_NAME_dup (R_CERT_NAME *name, R_FLAG_SHARE flag, R_CERT_NAME **dup_name) |
| | Duplicates the R_CERT_NAME structure name. More...
|
| int R_CDECL | R_CERT_NAME_from_binary (R_CERT_CTX *cert_ctx, R_FLAG_SHARE flag, unsigned int max_buf_len, const unsigned char *buf, unsigned int *consumed_len, R_CERT_NAME **name) |
| | Creates an R_CERT_NAME structure from the specified binary encoded data in buf. More...
|
| int R_CDECL | R_CERT_NAME_to_binary (R_CERT_NAME *name, unsigned int max_buf_len, unsigned char *buf, unsigned int *out_len) |
| | Creates binary encoded data from the specified R_CERT_NAME structure and places the binary output in buf. More...
|
| int R_CDECL | R_CERT_NAME_to_string (R_CERT_NAME *name, unsigned int max_str_len, char *str) |
| | Returns a string representation of the R_CERT_NAME structure name. More...
|
| int R_CDECL | R_CERT_NAME_to_MID_string (R_CERT_NAME *name, unsigned int max_str_len, R_UTF8 str) |
| | Returns a string representation of the R_CERT_NAME structure name that conforms to Java Specification Request (JSR) 118 for a Mobile Information Device (MID). More...
|
| int R_CDECL | R_CERT_NAME_from_string (R_CERT_CTX *cert_ctx, char *str, R_CERT_NAME **name) |
| | Converts a string representation of a certificate name into an R_CERT_NAME structure name. More...
|
| int R_CDECL | R_CERT_NAME_get_info (R_CERT_NAME *name, R_CERT_NAME_INFO info_id, void *value) |
| | Returns the requested information from the certificate name. More...
|
| int R_CDECL | R_CERT_NAME_set_info (R_CERT_NAME *name, R_CERT_NAME_INFO info_id, void *value) |
| | Sets the certificate name information. More...
|
| int R_CDECL | R_CERT_NAME_entry_to_R_CERT_NAME_ENTRY (R_CERT_NAME *name, R_FLAG_SHARE flag, R_CERT_NAME_ENTRY_TYPE type, int index, R_CERT_NAME_ENTRY **entry) |
| | Returns the name entry that has the type specified in type. More...
|
| int R_CDECL | R_CERT_NAME_compare_cb (R_CERT_NAME *name1, R_CERT_NAME *name2) |
| | Compares two certificate names name1 and name2. More...
|
| int R_CDECL | R_CERT_NAME_is_equal (R_CERT_NAME *name1, R_CERT_NAME *name2) |
| | Checks whether the two certificate name structures name1 and name2 are binary equivalents. More...
|
| int R_CDECL | R_CERT_NAME_ENTRY_new (R_CERT_NAME *name, R_CERT_NAME_ENTRY **entry) |
| | Creates a new name entry. More...
|
| int R_CDECL | R_CERT_NAME_ENTRY_free (R_CERT_NAME_ENTRY *entry) |
| | Removes all allocated memory for the R_CERT_NAME_ENTRY structure entry. More...
|
| int R_CDECL | R_CERT_NAME_ENTRY_get_info (R_CERT_NAME_ENTRY *entry, R_CERT_NAME_ENTRY_INFO info_id, void *value) |
| | Returns the requested information from the certificate name entry. More...
|
| int R_CDECL | R_CERT_NAME_ENTRY_set_info (R_CERT_NAME_ENTRY *entry, R_CERT_NAME_ENTRY_INFO info_id, void *value) |
| | Sets the certificate name entry information. More...
|