pub struct OaepAlgorithm {
id: EncryptionAlgorithmId,
oaep_hash_fn: unsafe extern "C" fn() -> *const EVP_MD,
mgf1_hash_fn: unsafe extern "C" fn() -> *const EVP_MD,
}
Expand description
An RSA-OAEP algorithm.
Fields§
§id: EncryptionAlgorithmId
§oaep_hash_fn: unsafe extern "C" fn() -> *const EVP_MD
§mgf1_hash_fn: unsafe extern "C" fn() -> *const EVP_MD
Implementations§
Source§impl OaepAlgorithm
impl OaepAlgorithm
Sourcepub fn id(&self) -> EncryptionAlgorithmId
pub fn id(&self) -> EncryptionAlgorithmId
Returns the EncryptionAlgorithmId
.
fn oaep_hash_fn(&self) -> unsafe extern "C" fn() -> *const EVP_MD
fn mgf1_hash_fn(&self) -> unsafe extern "C" fn() -> *const EVP_MD
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OaepAlgorithm
impl RefUnwindSafe for OaepAlgorithm
impl Send for OaepAlgorithm
impl Sync for OaepAlgorithm
impl Unpin for OaepAlgorithm
impl UnwindSafe for OaepAlgorithm
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more