pub fn client_session_keys<R, T, CPub, CSec, SPub>(
    rx: R,
    tx: T,
    client_pk: CPub,
    client_sk: CSec,
    server_pk: SPub
) -> Result<(), OneErr>where
    R: 'static + Into<BufWriteSized<_>> + Send,
    T: 'static + Into<BufWriteSized<_>> + Send,
    CPub: 'static + Into<BufReadSized<_>> + Send,
    CSec: 'static + Into<BufReadSized<_>> + Send,
    SPub: 'static + Into<BufReadSized<_>> + Send,
Expand description

Generate session keys from the client perspective.