#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]
#![allow(renamed_and_removed_lints)] #![allow(unknown_lints)] #![warn(missing_docs)]
#![warn(noop_method_call)]
#![warn(unreachable_pub)]
#![warn(clippy::all)]
#![deny(clippy::await_holding_lock)]
#![deny(clippy::cargo_common_metadata)]
#![deny(clippy::cast_lossless)]
#![deny(clippy::checked_conversions)]
#![warn(clippy::cognitive_complexity)]
#![deny(clippy::debug_assert_with_mut_call)]
#![deny(clippy::exhaustive_enums)]
#![deny(clippy::exhaustive_structs)]
#![deny(clippy::expl_impl_clone_on_copy)]
#![deny(clippy::fallible_impl_from)]
#![deny(clippy::implicit_clone)]
#![deny(clippy::large_stack_arrays)]
#![warn(clippy::manual_ok_or)]
#![deny(clippy::missing_docs_in_private_items)]
#![warn(clippy::needless_borrow)]
#![warn(clippy::needless_pass_by_value)]
#![warn(clippy::option_option)]
#![deny(clippy::print_stderr)]
#![deny(clippy::print_stdout)]
#![warn(clippy::rc_buffer)]
#![deny(clippy::ref_option_ref)]
#![warn(clippy::semicolon_if_nothing_returned)]
#![warn(clippy::trait_duplication_in_bounds)]
#![deny(clippy::unchecked_time_subtraction)]
#![deny(clippy::unnecessary_wraps)]
#![warn(clippy::unseparated_literal_suffix)]
#![deny(clippy::unwrap_used)]
#![deny(clippy::mod_module_files)]
#![allow(clippy::let_unit_value)] #![allow(clippy::uninlined_format_args)]
#![allow(clippy::significant_drop_in_scrutinee)] #![allow(clippy::result_large_err)] #![allow(clippy::needless_raw_string_hashes)] #![allow(clippy::needless_lifetimes)] #![allow(mismatched_lifetime_syntaxes)] #![allow(clippy::collapsible_if)] #![deny(clippy::unused_async)]
use std::time;
use thiserror::Error;
use web_time_compat::{SystemTime, SystemTimeExt};
pub mod signed;
pub mod timed;
#[derive(Debug, Clone, Error, PartialEq, Eq)]
#[non_exhaustive]
pub enum TimeValidityError {
#[error("Object will not be valid for {}", humantime::format_duration(*.0))]
NotYetValid(time::Duration),
#[error("Object has been expired for {}", humantime::format_duration(*.0))]
Expired(time::Duration),
#[error("Object is not currently valid")]
Unspecified,
}
pub trait Timebound<T>: Sized {
type Error;
fn is_valid_at(&self, t: &time::SystemTime) -> Result<(), Self::Error>;
fn dangerously_assume_timely(self) -> T;
fn check_valid_at(self, t: &time::SystemTime) -> Result<T, Self::Error> {
self.is_valid_at(t)?;
Ok(self.dangerously_assume_timely())
}
fn check_valid_now(self) -> Result<T, Self::Error> {
self.check_valid_at(&SystemTime::get())
}
fn check_valid_at_opt(self, t: Option<time::SystemTime>) -> Result<T, Self::Error> {
match t {
Some(when) => self.check_valid_at(&when),
None => self.check_valid_now(),
}
}
}
pub trait SelfSigned<T>: Sized {
type Error;
fn is_well_signed(&self) -> Result<(), Self::Error>;
fn dangerously_assume_wellsigned(self) -> T;
fn check_signature(self) -> Result<T, Self::Error> {
self.is_well_signed()?;
Ok(self.dangerously_assume_wellsigned())
}
}
pub trait ExternallySigned<T>: Sized {
type Key: ?Sized;
type KeyHint;
type Error;
fn key_is_correct(&self, k: &Self::Key) -> Result<(), Self::KeyHint>;
fn is_well_signed(&self, k: &Self::Key) -> Result<(), Self::Error>;
fn dangerously_assume_wellsigned(self) -> T;
fn check_signature(self, k: &Self::Key) -> Result<T, Self::Error> {
self.is_well_signed(k)?;
Ok(self.dangerously_assume_wellsigned())
}
}