Home
last modified time | relevance | path

Searched refs:Encrypter (Results 1 – 2 of 2) sorted by relevance

/third_party/rust/crates/rust-openssl/openssl/src/
Dencrypt.rs54 pub struct Encrypter<'a> { struct
59 unsafe impl<'a> Sync for Encrypter<'a> {} argument
60 unsafe impl<'a> Send for Encrypter<'a> {} implementation
62 impl<'a> Drop for Encrypter<'a> { implementation
70 impl<'a> Encrypter<'a> { implementation
76 pub fn new<T>(pkey: &'a PKeyRef<T>) -> Result<Encrypter<'a>, ErrorStack> in new()
90 Ok(Encrypter { in new()
480 use crate::encrypt::{Decrypter, Encrypter};
497 let mut encrypter = Encrypter::new(&pkey).unwrap(); in rsa_encrypt_decrypt()
524 let mut encrypter = Encrypter::new(&pkey).unwrap(); in rsa_encrypt_decrypt_with_sha256()
[all …]
/third_party/rust/crates/rust-openssl/openssl/
DCHANGELOG.md276 * Added `Encrypter::set_rsa_oaep_label`.