crab_gnupg::gnupg

Struct GPG

Source
pub struct GPG {
    pub homedir: String,
    pub output_dir: String,
    pub env: Option<HashMap<String, String>>,
    pub keyrings: Option<Vec<String>>,
    pub secret_keyring: Option<Vec<String>>,
    pub options: Option<Vec<String>>,
    pub armor: bool,
    pub version: f32,
    pub full_version: String,
}

Fields§

§homedir: String§output_dir: String§env: Option<HashMap<String, String>>§keyrings: Option<Vec<String>>§secret_keyring: Option<Vec<String>>§options: Option<Vec<String>>§armor: bool§version: f32§full_version: String

Implementations§

Source§

impl GPG

Source

pub fn init( homedir: Option<String>, output_dir: Option<String>, armor: bool, ) -> Result<GPG, GPGError>

Source

pub fn gen_key( &self, key_passphrase: Option<String>, args: Option<HashMap<String, String>>, ) -> Result<CmdResult, GPGError>

Source

pub fn list_keys( &self, secret: bool, keys: Option<Vec<String>>, signature: bool, ) -> Result<Vec<ListKeyResult>, GPGError>

Source

pub fn delete_keys( &self, fingerprints: Vec<String>, is_secret: bool, is_subkey: bool, passphrase: Option<String>, ) -> Result<CmdResult, GPGError>

Source

pub fn import_key( &self, file: Option<File>, file_path: Option<String>, merge_only: bool, extra_args: Option<Vec<String>>, ) -> Result<CmdResult, GPGError>

Source

pub fn export_public_key( &self, key_id: Option<Vec<String>>, output: Option<String>, ) -> Result<CmdResult, GPGError>

Source

pub fn export_secret_key( &self, key_id: Option<Vec<String>>, passphrase: Option<String>, output: Option<String>, ) -> Result<CmdResult, GPGError>

Source

pub fn trust_key( &self, fingerprints: Vec<String>, trust_level: TrustLevel, ) -> Result<CmdResult, GPGError>

Source

pub fn sign_key( &self, signing_key_id: String, target_key_id: String, passphrase: Option<String>, extra_args: Option<Vec<String>>, ) -> Result<CmdResult, GPGError>

Source

pub fn encrypt( &self, encrypt_option: EncryptOption, ) -> Result<CmdResult, GPGError>

Source

pub fn decrypt( &self, decrypt_option: DecryptOption, ) -> Result<CmdResult, GPGError>

Source

pub fn sign(&self, sign_option: SignOption) -> Result<CmdResult, GPGError>

Source

pub fn verify_file( &self, file: Option<File>, file_path: Option<String>, signature_file_path: Option<String>, extra_args: Option<Vec<String>>, ) -> Result<CmdResult, GPGError>

Trait Implementations§

Source§

impl Clone for GPG

Source§

fn clone(&self) -> GPG

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for GPG

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for GPG

§

impl RefUnwindSafe for GPG

§

impl Send for GPG

§

impl Sync for GPG

§

impl Unpin for GPG

§

impl UnwindSafe for GPG

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.