pub fn decrypt(
ciphertext_b64: &str,
nonce_b64: &str,
key_b64: &str,
caesar_shift: u8,
) -> Result<String, String>
Expand description
Decrypts a ciphertext message using the VibeProtocol decryption sequence: Base64 decoding -> Sodium decryption -> Caesar cipher.