pub async fn seal_open<M, C, P, S>(
    message: M,
    cipher: C,
    pub_key: P,
    sec_key: S
) -> SodokenResult<()>
where M: Into<BufWrite> + 'static + Send, C: Into<BufRead> + 'static + Send, P: Into<BufReadSized<PUBLICKEYBYTES>> + 'static + Send, S: Into<BufReadSized<SECRETKEYBYTES>> + 'static + Send,
Expand description

open (decrypt) a sealed message.