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
//! # TLS Codec //! //! This crate implements the TLS codec as defined in [RFC 8446](https://tools.ietf.org/html/rfc8446) //! as well as some extensions required by MLS. //! //! With the feature `derive` `TlsSerialize`, `TlsDeserialize`, and `TlsSize` //! can be derived. //! Note that `TlsSerialize` and `TlsDeserialize` both require `TlsSize`. //! //! This crate provides the following data structures that implement TLS //! serialization/deserialization //! * `u8`, `u16`, `u32`, `u64` //! * `TlsVecU8`, `TlsVecU16`, `TlsVecU32` //! * `SecretTlsVecU8`, `SecretTlsVecU16`, `SecretTlsVecU32` //! The same as the `TlsVec*` versions but it implements zeroize, requiring //! the elements to implement zeroize as well. //! * `TlsSliceU8`, `TlsSliceU16`, `TlsSliceU32` are lightweight wrapper for slices //! that allow to serialize them without having to create a `TlsVec*`. //! * `TlsByteSliceU8`, `TlsByteSliceU16`, `TlsByteSliceU32`, and //! `TlsByteVecU8`, `TlsByteVecU16`, `TlsByteVecU32` //! are provided with optimized implementations for byte vectors. //! * `[u8; l]`, for `l ∈ [1..128]` //! * Serialize for `Option<T>` where `T: Serialize` //! * Deserialize for `Option<T>` where `T: Deserialize` //! //! ## Usage //! //! ``` //! use tls_codec::{TlsVecU8, Serialize, Deserialize}; //! let mut b = &[1u8, 4, 77, 88, 1, 99] as &[u8]; //! //! let a = u8::tls_deserialize(&mut b).expect("Unable to tls_deserialize"); //! assert_eq!(1, a); //! println!("b: {:?}", b); //! let v = TlsVecU8::<u8>::tls_deserialize(&mut b).expect("Unable to tls_deserialize"); //! assert_eq!(&[77, 88, 1, 99], v.as_slice()); //! ``` use std::{ fmt::Display, io::{Read, Write}, }; mod arrays; mod primitives; mod tls_vec; pub use tls_vec::{ SecretTlsVecU16, SecretTlsVecU32, SecretTlsVecU8, TlsByteSliceU16, TlsByteSliceU32, TlsByteSliceU8, TlsByteVecU16, TlsByteVecU32, TlsByteVecU8, TlsSliceU16, TlsSliceU32, TlsSliceU8, TlsVecU16, TlsVecU32, TlsVecU8, }; #[cfg(feature = "derive")] pub use tls_codec_derive::{TlsDeserialize, TlsSerialize, TlsSize}; /// Errors that are thrown by this crate. #[derive(Debug, PartialEq, Clone)] pub enum Error { /// An error occurred during encoding. EncodingError(String), /// The length of a vector is invalid. InvalidVectorLength, /// Error writing everything out. InvalidWriteLength(String), /// Invalid input when trying to decode a primitive integer. InvalidInput, /// An error occurred during decoding. DecodingError(String), /// Reached the end of a byte stream. EndOfStream, } impl std::error::Error for Error {} impl Display for Error { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { f.write_fmt(format_args!("{:?}", self)) } } impl From<std::io::Error> for Error { fn from(e: std::io::Error) -> Self { match e.kind() { std::io::ErrorKind::UnexpectedEof => Self::EndOfStream, _ => Self::DecodingError(format!("io error: {:?}", e)), } } } /// The `Size` trait needs to be implemented by any struct that should be /// efficiently serialized. /// This allows to collect the length of a serialized structure before allocating /// memory. pub trait Size { fn tls_serialized_len(&self) -> usize; } /// The `Serialize` trait provides functions to serialize a struct or enum. /// /// The trait provides two functions: /// * `tls_serialize` that takes a buffer to write the serialization to /// * `tls_serialize_detached` that returns a byte vector pub trait Serialize: Size { /// Serialize `self` and write it to the `writer`. /// The function returns the number of bytes written to `writer`. fn tls_serialize<W: Write>(&self, writer: &mut W) -> Result<usize, Error>; /// Serialize `self` and return it as a byte vector. fn tls_serialize_detached(&self) -> Result<Vec<u8>, Error> { let mut buffer = Vec::with_capacity(self.tls_serialized_len()); let written = self.tls_serialize(&mut buffer)?; debug_assert_eq!( written, buffer.len(), "Expected that {} bytes were written but the output holds {} bytes", written, buffer.len() ); if written != buffer.len() { Err(Error::EncodingError(format!( "Expected that {} bytes were written but the output holds {} bytes", written, buffer.len() ))) } else { Ok(buffer) } } } /// The `Deserialize` trait defines functions to deserialize a byte slice to a /// struct or enum. pub trait Deserialize: Size { /// This function deserializes the `bytes` from the provided a [`std::io::Read`] /// and returns the populated struct. /// /// In order to get the amount of bytes read, use [`TlsSize::serialized_len`]. fn tls_deserialize<R: Read>(bytes: &mut R) -> Result<Self, Error> where Self: Sized; }