pink-sidevm-env 0.1.4

The low level protocol between sidevm guest and host
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use scale::{Decode, Encode};

/// TLS server configuration.
#[derive(Encode, Decode, Clone)]
pub enum TlsServerConfig {
    V0 {
        /// Certificate in PEM format.
        cert: String,
        /// The private key of the certificate, in PEM format.
        key: String,
    },
}