pub struct DecryptionParameters {
pub rsa_passphrase: String,
pub rsa_private_key_pem: String,
}Expand description
DecryptionParameters is basically the RSA .pem encoded private key and passphrase
Fields§
§rsa_passphrase: String§rsa_private_key_pem: StringAuto Trait Implementations§
impl Freeze for DecryptionParameters
impl RefUnwindSafe for DecryptionParameters
impl Send for DecryptionParameters
impl Sync for DecryptionParameters
impl Unpin for DecryptionParameters
impl UnwindSafe for DecryptionParameters
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