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()
355 pub unsafe fn from_ptr(ptr: *const ffi::EVP_CIPHER) -> Cipher { in from_ptr()
420 unsafe impl Sync for Cipher {} implementation
421 unsafe impl Send for Cipher {} implementation
496 t: Cipher, in new()
646 t: Cipher, in encrypt()
685 t: Cipher, in decrypt()
694 t: Cipher, in cipher()
717 t: Cipher, in encrypt_aead()
748 t: Cipher, in decrypt_aead()
904 fn cipher_test(ciphertype: super::Cipher, pt: &str, ct: &str, key: &str, iv: &str) { in cipher_test()
928 fn cipher_test_nopad(ciphertype: super::Cipher, pt: &str, ct: &str, key: &str, iv: &str) { in cipher_test_nopad()