ssh_key/encode.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
//! Encoder-side implementation of the SSH protocol's data type representations
//! as described in [RFC4251 § 5].
//!
//! [RFC4251 § 5]: https://datatracker.ietf.org/doc/html/rfc4251#section-5
use crate::{checked::CheckedSum, writer::Writer, Result};
#[cfg(feature = "alloc")]
use {
crate::Error,
alloc::{string::String, vec::Vec},
};
/// Encoding trait.
///
/// This trait describes how to encode a given type.
pub(crate) trait Encode {
/// Get the length of this type encoded in bytes, prior to Base64 encoding.
fn encoded_len(&self) -> Result<usize>;
/// Encode this value using the provided [`Encoder`].
fn encode(&self, writer: &mut impl Writer) -> Result<()>;
/// Encode this value, first prepending a `uint32` length prefix
/// set to [`Encode::encoded_len`].
fn encode_nested(&self, writer: &mut impl Writer) -> Result<()> {
self.encoded_len()?.encode(writer)?;
self.encode(writer)
}
}
/// Encode a single `byte` to the writer.
impl Encode for u8 {
fn encoded_len(&self) -> Result<usize> {
Ok(1)
}
fn encode(&self, writer: &mut impl Writer) -> Result<()> {
writer.write(&[*self])
}
}
/// Encode a `uint32` as described in [RFC4251 § 5]:
///
/// > Represents a 32-bit unsigned integer. Stored as four bytes in the
/// > order of decreasing significance (network byte order).
/// > For example: the value 699921578 (0x29b7f4aa) is stored as 29 b7 f4 aa.
///
/// [RFC4251 § 5]: https://datatracker.ietf.org/doc/html/rfc4251#section-5
impl Encode for u32 {
fn encoded_len(&self) -> Result<usize> {
Ok(4)
}
fn encode(&self, writer: &mut impl Writer) -> Result<()> {
writer.write(&self.to_be_bytes())
}
}
/// Encode a `uint64` as described in [RFC4251 § 5]:
///
/// > Represents a 64-bit unsigned integer. Stored as eight bytes in
/// > the order of decreasing significance (network byte order).
///
/// [RFC4251 § 5]: https://datatracker.ietf.org/doc/html/rfc4251#section-5
impl Encode for u64 {
fn encoded_len(&self) -> Result<usize> {
Ok(8)
}
fn encode(&self, writer: &mut impl Writer) -> Result<()> {
writer.write(&self.to_be_bytes())
}
}
/// Encode a `usize` as a `uint32` as described in [RFC4251 § 5].
///
/// Uses [`Encode`] impl on `u32` after converting from a `usize`, handling
/// potential overflow if `usize` is bigger than `u32`.
///
/// [RFC4251 § 5]: https://datatracker.ietf.org/doc/html/rfc4251#section-5
impl Encode for usize {
fn encoded_len(&self) -> Result<usize> {
Ok(4)
}
fn encode(&self, writer: &mut impl Writer) -> Result<()> {
u32::try_from(*self)?.encode(writer)
}
}
/// Encodes `[u8]` into `byte[n]` as described in [RFC4251 § 5]:
///
/// > A byte represents an arbitrary 8-bit value (octet). Fixed length
/// > data is sometimes represented as an array of bytes, written
/// > byte[n], where n is the number of bytes in the array.
///
/// [RFC4251 § 5]: https://datatracker.ietf.org/doc/html/rfc4251#section-5
impl Encode for [u8] {
fn encoded_len(&self) -> Result<usize> {
[4, self.len()].checked_sum()
}
fn encode(&self, writer: &mut impl Writer) -> Result<()> {
self.len().encode(writer)?;
writer.write(self)
}
}
/// Encodes `[u8; N]` into `byte[n]` as described in [RFC4251 § 5]:
///
/// > A byte represents an arbitrary 8-bit value (octet). Fixed length
/// > data is sometimes represented as an array of bytes, written
/// > byte[n], where n is the number of bytes in the array.
///
/// [RFC4251 § 5]: https://datatracker.ietf.org/doc/html/rfc4251#section-5
impl<const N: usize> Encode for [u8; N] {
fn encoded_len(&self) -> Result<usize> {
self.as_slice().encoded_len()
}
fn encode(&self, writer: &mut impl Writer) -> Result<()> {
self.as_slice().encode(writer)
}
}
/// Encode a `string` as described in [RFC4251 § 5]:
///
/// > Arbitrary length binary string. Strings are allowed to contain
/// > arbitrary binary data, including null characters and 8-bit
/// > characters. They are stored as a uint32 containing its length
/// > (number of bytes that follow) and zero (= empty string) or more
/// > bytes that are the value of the string. Terminating null
/// > characters are not used.
/// >
/// > Strings are also used to store text. In that case, US-ASCII is
/// > used for internal names, and ISO-10646 UTF-8 for text that might
/// > be displayed to the user. The terminating null character SHOULD
/// > NOT normally be stored in the string. For example: the US-ASCII
/// > string "testing" is represented as 00 00 00 07 t e s t i n g. The
/// > UTF-8 mapping does not alter the encoding of US-ASCII characters.
///
/// [RFC4251 § 5]: https://datatracker.ietf.org/doc/html/rfc4251#section-5
impl Encode for &str {
fn encoded_len(&self) -> Result<usize> {
self.as_bytes().encoded_len()
}
fn encode(&self, writer: &mut impl Writer) -> Result<()> {
self.as_bytes().encode(writer)
}
}
#[cfg(feature = "alloc")]
#[cfg_attr(docsrs, doc(cfg(feature = "alloc")))]
impl Encode for Vec<u8> {
fn encoded_len(&self) -> Result<usize> {
self.as_slice().encoded_len()
}
fn encode(&self, writer: &mut impl Writer) -> Result<()> {
self.as_slice().encode(writer)
}
}
#[cfg(feature = "alloc")]
#[cfg_attr(docsrs, doc(cfg(feature = "alloc")))]
impl Encode for String {
fn encoded_len(&self) -> Result<usize> {
self.as_str().encoded_len()
}
fn encode(&self, writer: &mut impl Writer) -> Result<()> {
self.as_str().encode(writer)
}
}
#[cfg(feature = "alloc")]
#[cfg_attr(docsrs, doc(cfg(feature = "alloc")))]
impl Encode for Vec<String> {
fn encoded_len(&self) -> Result<usize> {
self.iter().try_fold(4usize, |acc, string| {
acc.checked_add(string.encoded_len()?).ok_or(Error::Length)
})
}
fn encode(&self, writer: &mut impl Writer) -> Result<()> {
self.encoded_len()?
.checked_sub(4)
.ok_or(Error::Length)?
.encode(writer)?;
for entry in self {
entry.encode(writer)?;
}
Ok(())
}
}