wtx 0.45.0

A collection of different transport implementations and related tools focused primarily on web technologies.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Chain Validation - Crl Expiration
///
/// Controls how the CRL `nextUpdate` expiration field is interpreted when verifying chains.
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CvCrlExpiration {
  /// Raises an error if the CRL is expired.
  ///
  /// This variant is often more secure.
  Enforce,
  /// Expired CRLs are ignored.
  Ignore,
}