pub async fn seal_open<M, C, P, S>(
    message: M,
    cipher: C,
    pub_key: P,
    sec_key: S
) -> Result<(), OneErr> where
    M: 'static + Into<BufWrite> + Send,
    C: 'static + Into<BufRead> + Send,
    P: 'static + Into<BufReadSized<{_: usize}>> + Send,
    S: 'static + Into<BufReadSized<{_: usize}>> + Send
Expand description

open (decrypt) a sealed message.