Lines Matching defs:decrypt
43 //! // Use the asymmetric keys to encrypt and decrypt a short message:
427 /// Encrypt some plaintext in chunks, then decrypt the ciphertext back into plaintext, in AES 128
461 /// // Let's pretend we don't know the plaintext, and now decrypt the ciphertext.
654 /// Data is decrypted using the specified cipher type `t` in decrypt mode with the specified `key`
657 /// This is a convenient interface to `Crypter` to decrypt all data in one go. To decrypt a stream
665 /// use openssl::symm::{decrypt, Cipher};
672 /// let ciphertext = decrypt(
682 pub fn decrypt(
741 /// Like `decrypt`, but for AEAD ciphers such as AES GCM.
908 let computed = super::decrypt(ciphertype, &key, Some(&iv), &ct).unwrap();