Home
last modified time | relevance | path

Searched defs:CipherRef (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/rust/crates/openssl/src/
Dcipher.rs121 pub fn from_nid(nid: Nid) -> Option<&'static CipherRef> { in from_nid()
585 pub struct CipherRef(Opaque); struct
587 impl ForeignTypeRef for CipherRef { implementation
591 unsafe impl Sync for CipherRef {} implementation
592 unsafe impl Send for CipherRef {} implementation
594 impl CipherRef { impl
Dcipher_ctx.rs129 type_: Option<&CipherRef>, in encrypt_init()
149 type_: Option<&CipherRef>, in decrypt_init()
158 type_: Option<&CipherRef>, in cipher_init()
208 type_: Option<&CipherRef>, in seal_init()
265 type_: Option<&CipherRef>, in open_init()
771 fn aes_128_cbc(cipher: &CipherRef) { in aes_128_cbc()
822 fn test_stream_cipher(cipher: &'static CipherRef) { in test_stream_cipher()
934 fn output_buffer_too_small(cipher: &'static CipherRef) { in output_buffer_too_small()
954 fn cipher_wrap_test(cipher: &CipherRef, pt: &str, ct: &str, key: &str, iv: Option<&str>) { in cipher_wrap_test()