pub fn server_session_keys<R, T, SPub, SSec, CPub>(
    rx: R,
    tx: T,
    server_pk: SPub,
    server_sk: SSec,
    client_pk: CPub
) -> Result<(), OneErr> where
    R: 'static + Into<BufWriteSized<{_: usize}>> + Send,
    T: 'static + Into<BufWriteSized<{_: usize}>> + Send,
    SPub: 'static + Into<BufReadSized<{_: usize}>> + Send,
    SSec: 'static + Into<BufReadSized<{_: usize}>> + Send,
    CPub: 'static + Into<BufReadSized<{_: usize}>> + Send
Expand description

Generate session keys from the server perspective.