Home
last modified time | relevance | path

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

/third_party/rust/crates/rust-openssl/openssl/src/
Dcipher.rs121 pub fn from_nid(nid: Nid) -> Option<&'static CipherRef> { in from_nid()
494 pub struct CipherRef(Opaque); struct
496 impl ForeignTypeRef for CipherRef { implementation
500 unsafe impl Sync for CipherRef {} implementation
501 unsafe impl Send for CipherRef {} implementation
503 impl CipherRef { impl
Dcipher_ctx.rs121 type_: Option<&CipherRef>, in encrypt_init()
141 type_: Option<&CipherRef>, in decrypt_init()
150 type_: Option<&CipherRef>, in cipher_init()
200 type_: Option<&CipherRef>, in seal_init()
257 type_: Option<&CipherRef>, in open_init()
761 fn aes_128_cbc(cipher: &CipherRef) { in aes_128_cbc()
812 fn test_stream_cipher(cipher: &'static CipherRef) { in test_stream_cipher()
924 fn output_buffer_too_small(cipher: &'static CipherRef) { in output_buffer_too_small()
944 fn cipher_wrap_test(cipher: &CipherRef, pt: &str, ct: &str, key: &str, iv: Option<&str>) { in cipher_wrap_test()