pub fn decrypt( password: &str, salt: &[u8; 32], ciphertext: Vec<u8>, ) -> Result<Vec<u8>, Error>
Given a password, salt, and some ciphertext, decrypts the ciphertext.
password
salt
ciphertext