|
ascii-chat 0.8.38
Real-time terminal-based video chat with ASCII art conversion
|
Go to the source code of this file.
Functions | |
| asciichat_error_t | build_github_ssh_url (const char *username, char *url_out, size_t url_size) |
| asciichat_error_t | build_gitlab_ssh_url (const char *username, char *url_out, size_t url_size) |
| asciichat_error_t | build_github_gpg_url (const char *username, char *url_out, size_t url_size) |
| asciichat_error_t | build_gitlab_gpg_url (const char *username, char *url_out, size_t url_size) |
| asciichat_error_t | fetch_github_ssh_keys (const char *username, char ***keys_out, size_t *num_keys) |
| asciichat_error_t | fetch_gitlab_ssh_keys (const char *username, char ***keys_out, size_t *num_keys) |
| asciichat_error_t | fetch_github_gpg_keys (const char *username, char ***keys_out, size_t *num_keys) |
| asciichat_error_t | fetch_gitlab_gpg_keys (const char *username, char ***keys_out, size_t *num_keys) |
| asciichat_error_t | parse_ssh_keys_from_response (const char *response_text, size_t response_len, char ***keys_out, size_t *num_keys, size_t max_keys) |
| asciichat_error_t | parse_gpg_keys_from_response (const char *response_text, size_t response_len, char ***keys_out, size_t *num_keys, size_t max_keys) |
| asciichat_error_t build_github_gpg_url | ( | const char * | username, |
| char * | url_out, | ||
| size_t | url_size | ||
| ) |
Definition at line 105 of file https_keys.c.
References safe_snprintf().
Referenced by fetch_github_gpg_keys().
| asciichat_error_t build_github_ssh_url | ( | const char * | username, |
| char * | url_out, | ||
| size_t | url_size | ||
| ) |
Definition at line 63 of file https_keys.c.
References safe_snprintf().
Referenced by fetch_github_ssh_keys().
| asciichat_error_t build_gitlab_gpg_url | ( | const char * | username, |
| char * | url_out, | ||
| size_t | url_size | ||
| ) |
Definition at line 134 of file https_keys.c.
References safe_snprintf().
Referenced by fetch_gitlab_gpg_keys().
| asciichat_error_t build_gitlab_ssh_url | ( | const char * | username, |
| char * | url_out, | ||
| size_t | url_size | ||
| ) |
Definition at line 84 of file https_keys.c.
References safe_snprintf().
Referenced by fetch_gitlab_ssh_keys().
| asciichat_error_t fetch_github_gpg_keys | ( | const char * | username, |
| char *** | keys_out, | ||
| size_t * | num_keys | ||
| ) |
Definition at line 231 of file https_keys.c.
References build_github_gpg_url(), and parse_gpg_keys_from_response().
Referenced by fetch_github_keys(), and parse_public_keys().
| asciichat_error_t fetch_github_ssh_keys | ( | const char * | username, |
| char *** | keys_out, | ||
| size_t * | num_keys | ||
| ) |
Definition at line 167 of file https_keys.c.
References build_github_ssh_url(), and parse_ssh_keys_from_response().
Referenced by fetch_github_keys(), and parse_public_keys().
| asciichat_error_t fetch_gitlab_gpg_keys | ( | const char * | username, |
| char *** | keys_out, | ||
| size_t * | num_keys | ||
| ) |
Definition at line 263 of file https_keys.c.
References build_gitlab_gpg_url(), and parse_gpg_keys_from_response().
Referenced by fetch_gitlab_keys(), and parse_public_keys().
| asciichat_error_t fetch_gitlab_ssh_keys | ( | const char * | username, |
| char *** | keys_out, | ||
| size_t * | num_keys | ||
| ) |
Definition at line 199 of file https_keys.c.
References build_gitlab_ssh_url(), and parse_ssh_keys_from_response().
Referenced by fetch_gitlab_keys(), and parse_public_keys().
| asciichat_error_t parse_gpg_keys_from_response | ( | const char * | response_text, |
| size_t | response_len, | ||
| char *** | keys_out, | ||
| size_t * | num_keys, | ||
| size_t | max_keys | ||
| ) |
Definition at line 397 of file https_keys.c.
References PLATFORM_MAX_PATH_LENGTH, platform_open(), and safe_snprintf().
Referenced by fetch_github_gpg_keys(), and fetch_gitlab_gpg_keys().
| asciichat_error_t parse_ssh_keys_from_response | ( | const char * | response_text, |
| size_t | response_len, | ||
| char *** | keys_out, | ||
| size_t * | num_keys, | ||
| size_t | max_keys | ||
| ) |
Definition at line 299 of file https_keys.c.
Referenced by fetch_github_ssh_keys(), and fetch_gitlab_ssh_keys().