|
ascii-chat 0.6.0
Real-time terminal-based video chat with ASCII art conversion
|
Go to the source code of this file.
Functions | |
SSH Agent Detection | |
| bool | ssh_agent_is_available (void) |
| Check if ssh-agent is running and available. | |
SSH Agent Key Management | |
| asciichat_error_t | ssh_agent_add_key (const private_key_t *private_key, const char *key_path) |
| Add a private key to ssh-agent. | |
| bool | ssh_agent_has_key (const public_key_t *public_key) |
| Check if a public key is already in ssh-agent. | |
| asciichat_error_t | ssh_agent_get_key (const public_key_t *public_key, private_key_t *key_out) |
| Retrieve a private key from ssh-agent by matching public key. | |
| asciichat_error_t | ssh_agent_sign (const public_key_t *public_key, const uint8_t *message, size_t message_len, uint8_t signature[64]) |
| Sign data using SSH agent with the specified public key. | |