Struct security::SecurityConfig[][src]

pub struct SecurityConfig {
    pub ca_path: String,
    pub cert_path: String,
    pub key_path: String,
    pub override_ssl_target: String,
    pub cert_allowed_cn: HashSet<String>,
    pub redact_info_log: Option<bool>,
    pub encryption: EncryptionConfig,
}

Fields

ca_path: Stringcert_path: Stringkey_path: Stringoverride_ssl_target: Stringcert_allowed_cn: HashSet<String>redact_info_log: Option<bool>encryption: EncryptionConfig

Implementations

impl SecurityConfig[src]

pub fn validate(&self) -> Result<(), Box<dyn Error>>[src]

Validates ca, cert and private key.

pub(crate) fn load_certs(
    &self
) -> Result<(Vec<u8>, Vec<u8>, Vec<u8>), Box<dyn Error>>
[src]

Load certificates from the given file path. Return ca, cert, key after successful read.

pub(crate) fn is_modified(
    &self,
    last: &mut Option<SystemTime>
) -> Result<bool, Box<dyn Error>>
[src]

Determine if the cert file has been modified. If modified, update the timestamp of this modification.

Trait Implementations

impl Clone for SecurityConfig[src]

impl Debug for SecurityConfig[src]

impl Default for SecurityConfig[src]

impl<'de> Deserialize<'de> for SecurityConfig where
    SecurityConfig: Default
[src]

impl PartialEq<SecurityConfig> for SecurityConfig[src]

impl Serialize for SecurityConfig[src]

impl StructuralPartialEq for SecurityConfig[src]

Auto Trait Implementations

impl RefUnwindSafe for SecurityConfig

impl Send for SecurityConfig

impl Sync for SecurityConfig

impl Unpin for SecurityConfig

impl UnwindSafe for SecurityConfig

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]