|
Zephyr API Documentation 4.4.99
A Scalable Open Source RTOS
|
This contains key configuration data for sshd on the device. More...
#include <zephyr/net/net_config.h>
Data Fields | |
| const char * | key_name |
| SSH key name. | |
| uint8_t * | key_buf |
| Temp buffer for loading and saving keys. | |
| size_t | key_buf_len |
| Size of the key buffer in bytes. | |
| int | key_id |
| Key id. | |
| enum ssh_host_key_type | key_type |
| Key type. | |
| int | key_bits |
| Key size in bits. | |
| bool | is_private |
| Is private key? | |
This contains key configuration data for sshd on the device.
| bool net_config_ssh_key::is_private |
Is private key?
| int net_config_ssh_key::key_bits |
Key size in bits.
| uint8_t* net_config_ssh_key::key_buf |
Temp buffer for loading and saving keys.
| size_t net_config_ssh_key::key_buf_len |
Size of the key buffer in bytes.
This is used to determine how big the buffer is for loading and saving keys.
| int net_config_ssh_key::key_id |
Key id.
| const char* net_config_ssh_key::key_name |
SSH key name.
This is used when saving or loading keys to identify them. The key name cannot contain spaces.
| enum ssh_host_key_type net_config_ssh_key::key_type |
Key type.