1use alloc::boxed::Box;
2use alloc::string::ToString;
3use core::fmt;
4
5use zeroize::Zeroize;
6
7use crate::enums::{ContentType, ProtocolVersion};
8use crate::error::Error;
9use crate::msgs::codec;
10pub use crate::msgs::message::{
11 BorrowedPayload, InboundOpaqueMessage, InboundPlainMessage, OutboundChunks,
12 OutboundOpaqueMessage, OutboundPlainMessage, PlainMessage, PrefixedPayload,
13};
14use crate::suites::ConnectionTrafficSecrets;
15
16pub trait Tls13AeadAlgorithm: Send + Sync {
18 fn encrypter(&self, key: AeadKey, iv: Iv) -> Box<dyn MessageEncrypter>;
20
21 fn decrypter(&self, key: AeadKey, iv: Iv) -> Box<dyn MessageDecrypter>;
23
24 fn key_len(&self) -> usize;
26
27 fn extract_keys(
32 &self,
33 key: AeadKey,
34 iv: Iv,
35 ) -> Result<ConnectionTrafficSecrets, UnsupportedOperationError>;
36
37 fn fips(&self) -> bool {
39 false
40 }
41}
42
43pub trait Tls12AeadAlgorithm: Send + Sync + 'static {
45 fn encrypter(&self, key: AeadKey, iv: &[u8], extra: &[u8]) -> Box<dyn MessageEncrypter>;
54
55 fn decrypter(&self, key: AeadKey, iv: &[u8]) -> Box<dyn MessageDecrypter>;
61
62 fn key_block_shape(&self) -> KeyBlockShape;
65
66 fn extract_keys(
77 &self,
78 key: AeadKey,
79 iv: &[u8],
80 explicit: &[u8],
81 ) -> Result<ConnectionTrafficSecrets, UnsupportedOperationError>;
82
83 fn fips(&self) -> bool {
85 false
86 }
87}
88
89#[derive(Debug, Eq, PartialEq, Clone, Copy)]
91pub struct UnsupportedOperationError;
92
93impl From<UnsupportedOperationError> for Error {
94 fn from(value: UnsupportedOperationError) -> Self {
95 Self::General(value.to_string())
96 }
97}
98
99impl fmt::Display for UnsupportedOperationError {
100 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
101 write!(f, "operation not supported")
102 }
103}
104
105#[cfg(feature = "std")]
106impl std::error::Error for UnsupportedOperationError {}
107
108pub struct KeyBlockShape {
112 pub enc_key_len: usize,
118
119 pub fixed_iv_len: usize,
128
129 pub explicit_nonce_len: usize,
134}
135
136pub trait MessageDecrypter: Send + Sync {
138 fn decrypt<'a>(
141 &mut self,
142 msg: InboundOpaqueMessage<'a>,
143 seq: u64,
144 ) -> Result<InboundPlainMessage<'a>, Error>;
145}
146
147pub trait MessageEncrypter: Send + Sync {
149 fn encrypt(
152 &mut self,
153 msg: OutboundPlainMessage<'_>,
154 seq: u64,
155 ) -> Result<OutboundOpaqueMessage, Error>;
156
157 fn encrypted_payload_len(&self, payload_len: usize) -> usize;
160}
161
162impl dyn MessageEncrypter {
163 pub(crate) fn invalid() -> Box<dyn MessageEncrypter> {
164 Box::new(InvalidMessageEncrypter {})
165 }
166}
167
168impl dyn MessageDecrypter {
169 pub(crate) fn invalid() -> Box<dyn MessageDecrypter> {
170 Box::new(InvalidMessageDecrypter {})
171 }
172}
173
174#[derive(Default)]
176pub struct Iv([u8; NONCE_LEN]);
177
178impl Iv {
179 #[cfg(feature = "tls12")]
181 pub fn new(value: [u8; NONCE_LEN]) -> Self {
182 Self(value)
183 }
184
185 #[cfg(feature = "tls12")]
187 pub fn copy(value: &[u8]) -> Self {
188 debug_assert_eq!(value.len(), NONCE_LEN);
189 let mut iv = Self::new(Default::default());
190 iv.0.copy_from_slice(value);
191 iv
192 }
193}
194
195impl From<[u8; NONCE_LEN]> for Iv {
196 fn from(bytes: [u8; NONCE_LEN]) -> Self {
197 Self(bytes)
198 }
199}
200
201impl AsRef<[u8]> for Iv {
202 fn as_ref(&self) -> &[u8] {
203 self.0.as_ref()
204 }
205}
206
207pub struct Nonce(pub [u8; NONCE_LEN]);
209
210impl Nonce {
211 #[inline]
215 pub fn new(iv: &Iv, seq: u64) -> Self {
216 let mut nonce = Self([0u8; NONCE_LEN]);
217 codec::put_u64(seq, &mut nonce.0[4..]);
218
219 nonce
220 .0
221 .iter_mut()
222 .zip(iv.0.iter())
223 .for_each(|(nonce, iv)| {
224 *nonce ^= *iv;
225 });
226
227 nonce
228 }
229}
230
231pub const NONCE_LEN: usize = 12;
234
235#[inline]
239pub fn make_tls13_aad(payload_len: usize) -> [u8; 5] {
240 let version = ProtocolVersion::TLSv1_2.to_array();
241 [
242 ContentType::ApplicationData.into(),
243 version[0],
245 version[1],
246 (payload_len >> 8) as u8,
247 (payload_len & 0xff) as u8,
248 ]
249}
250
251#[inline]
255pub fn make_tls12_aad(
256 seq: u64,
257 typ: ContentType,
258 vers: ProtocolVersion,
259 len: usize,
260) -> [u8; TLS12_AAD_SIZE] {
261 let mut out = [0; TLS12_AAD_SIZE];
262 codec::put_u64(seq, &mut out[0..]);
263 out[8] = typ.into();
264 codec::put_u16(vers.into(), &mut out[9..]);
265 codec::put_u16(len as u16, &mut out[11..]);
266 out
267}
268
269const TLS12_AAD_SIZE: usize = 8 + 1 + 2 + 2;
270
271pub struct AeadKey {
275 buf: [u8; Self::MAX_LEN],
276 used: usize,
277}
278
279impl AeadKey {
280 #[cfg(feature = "tls12")]
281 pub(crate) fn new(buf: &[u8]) -> Self {
282 debug_assert!(buf.len() <= Self::MAX_LEN);
283 let mut key = Self::from([0u8; Self::MAX_LEN]);
284 key.buf[..buf.len()].copy_from_slice(buf);
285 key.used = buf.len();
286 key
287 }
288
289 pub(crate) fn with_length(self, len: usize) -> Self {
290 assert!(len <= self.used);
291 Self {
292 buf: self.buf,
293 used: len,
294 }
295 }
296
297 pub(crate) const MAX_LEN: usize = 32;
299}
300
301impl Drop for AeadKey {
302 fn drop(&mut self) {
303 self.buf.zeroize();
304 }
305}
306
307impl AsRef<[u8]> for AeadKey {
308 fn as_ref(&self) -> &[u8] {
309 &self.buf[..self.used]
310 }
311}
312
313impl From<[u8; Self::MAX_LEN]> for AeadKey {
314 fn from(bytes: [u8; Self::MAX_LEN]) -> Self {
315 Self {
316 buf: bytes,
317 used: Self::MAX_LEN,
318 }
319 }
320}
321
322struct InvalidMessageEncrypter {}
324
325impl MessageEncrypter for InvalidMessageEncrypter {
326 fn encrypt(
327 &mut self,
328 _m: OutboundPlainMessage<'_>,
329 _seq: u64,
330 ) -> Result<OutboundOpaqueMessage, Error> {
331 Err(Error::EncryptError)
332 }
333
334 fn encrypted_payload_len(&self, payload_len: usize) -> usize {
335 payload_len
336 }
337}
338
339struct InvalidMessageDecrypter {}
341
342impl MessageDecrypter for InvalidMessageDecrypter {
343 fn decrypt<'a>(
344 &mut self,
345 _m: InboundOpaqueMessage<'a>,
346 _seq: u64,
347 ) -> Result<InboundPlainMessage<'a>, Error> {
348 Err(Error::DecryptError)
349 }
350}