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
use crate::{owned::SPACE, Time}; use bstr::{BStr, BString, ByteSlice}; use quick_error::quick_error; use std::io; #[derive(PartialEq, Eq, Debug, Hash, Ord, PartialOrd, Clone)] #[cfg_attr(feature = "serde1", derive(serde::Serialize, serde::Deserialize))] pub struct Signature { pub name: BString, pub email: BString, pub time: Time, } quick_error! { #[derive(Debug)] pub enum Error { IllegalCharacter { display("Signature name or email must not contain '<', '>' or \\n") } } } impl From<Error> for io::Error { fn from(err: Error) -> Self { io::Error::new(io::ErrorKind::Other, err) } } impl Signature { pub fn write_to(&self, mut out: impl io::Write) -> io::Result<()> { out.write_all(validated_token(self.name.as_bstr())?)?; out.write_all(SPACE)?; out.write_all(&b"<"[..])?; out.write_all(validated_token(self.email.as_bstr())?)?; out.write_all(&b"> "[..])?; self.time.write_to(out)?; Ok(()) } } fn validated_token(name: &BStr) -> Result<&BStr, Error> { if name.find_byteset(b"<>\n").is_some() { return Err(Error::IllegalCharacter); } Ok(name) }