pub fn seal_open(
    recipient_sk: &SecretKey,
    ciphertext: &[u8]
) -> Result<Vec<u8>, Error>
Available on crate feature seal only.
Expand description

Implementation of crypto_box_seal_open function from libsodium “sealed boxes”.

Sealed boxes are designed to anonymously send messages to a recipient given their public key.