Lines Matching defs:Cipher
73 pub struct Cipher(*const ffi::EVP_CIPHER); struct
75 impl Cipher { implementation
81 pub fn from_nid(nid: Nid) -> Option<Cipher> { in from_nid()
353 pub unsafe fn from_ptr(ptr: *const ffi::EVP_CIPHER) -> Cipher { in from_ptr()
418 unsafe impl Sync for Cipher {} implementation
419 unsafe impl Send for Cipher {} implementation
494 t: Cipher, in new()
644 t: Cipher, in encrypt()
683 t: Cipher, in decrypt()
692 t: Cipher, in cipher()
715 t: Cipher, in encrypt_aead()
746 t: Cipher, in decrypt_aead()
902 fn cipher_test(ciphertype: super::Cipher, pt: &str, ct: &str, key: &str, iv: &str) { in cipher_test()
926 fn cipher_test_nopad(ciphertype: super::Cipher, pt: &str, ct: &str, key: &str, iv: &str) { in cipher_test_nopad()