DeterministicESPAsyncWebServer v6.27.1
Zero-allocation, bounded-execution async HTTP server for ESP32
Loading...
Searching...
No Matches
SshRsaPubKey Struct Reference

RSA-2048 public key parameters for the host key blob. More...

#include <ssh_rsa.h>

Public Attributes

uint8_t n [SSH_RSA_KEY_BYTES]
 Modulus n (256 bytes, big-endian).
 
uint8_t e_bytes [4]
 Public exponent e (big-endian uint32).
 
bool loaded
 True after ssh_rsa_load_pubkey() succeeds.
 

Detailed Description

RSA-2048 public key parameters for the host key blob.

Allocated in BSS at link time. Contains only n and e; no secret material.

Definition at line 207 of file ssh_rsa.h.

Member Data Documentation

◆ n

uint8_t SshRsaPubKey::n[SSH_RSA_KEY_BYTES]

Modulus n (256 bytes, big-endian).

Definition at line 209 of file ssh_rsa.h.

Referenced by ssh_rsa_encode_pubkey(), and ssh_rsa_load_pubkey().

◆ e_bytes

uint8_t SshRsaPubKey::e_bytes[4]

Public exponent e (big-endian uint32).

Definition at line 210 of file ssh_rsa.h.

Referenced by ssh_rsa_encode_pubkey(), and ssh_rsa_load_pubkey().

◆ loaded

bool SshRsaPubKey::loaded

True after ssh_rsa_load_pubkey() succeeds.

Definition at line 211 of file ssh_rsa.h.

Referenced by ssh_rsa_encode_pubkey(), and ssh_rsa_load_pubkey().


The documentation for this struct was generated from the following file: