anothertls 0.1.3

Yet another TLS implementation, but written from scratch (including the crypto) in pure Rust - of course.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (c) 2023, Tobias Müller <git@tsmr.eu>
 *
 */

pub mod base64;
pub mod bytes;
pub mod pem;
pub mod der;
pub mod keylog;
pub mod error;

#[macro_use]
pub mod log;
pub mod x509;