pub async fn seal<C, M, P>(
    cipher: C,
    message: M,
    dest_pub_key: P
) -> impl Future<Output = Result<(), OneErr>>where
    C: Into<BufWrite> + 'static + Send,
    M: Into<BufRead> + 'static + Send,
    P: Into<BufReadSized<_>> + 'static + Send,
Expand description

seal (encrypt) a message with an ephemeral key that can’t even be decrypted by this sender.