wtx 0.50.0

A collection of different transport implementations and related tools focused primarily on web technologies.
Documentation
/// Chain Validation - Evaluation Depth
///
/// The depth of the graph search
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CvEvaluationDepth {
  /// Search can continue up to a certain depth
  ///
  /// This variant is often more secure.
  Chain(u8),
  /// Only verifies the leaf certificate
  EndEntity,
}

impl Default for CvEvaluationDepth {
  #[inline]
  fn default() -> Self {
    Self::Chain(8)
  }
}