![]() |
Members | Description | ||
GnuPGWrapper |
Default constructor
|
|||
GnuPGWrapper |
Constructor
|
|||
command |
Command property: set the type of command to execute (sign, encrypt...)
Defaults to SignAndEncrypt.
|
|||
armor |
Boolean flag: if true, GnuPG creates ASCII armored output (text output).
Defaults to true (ASCII ouput).
|
|||
recipient |
Recipient email address - mandatory when
|
|||
originator |
Originator email address - recommended when
|
|||
yes |
Boolean flag; if true, GnuPG assumes "yes" on most questions.
Defaults to true.
|
|||
batch |
Boolean flag; if true, GnuPG uses batch mode (Never ask, do not allow
interactive commands).
Defaults to true.
|
|||
passphrase |
Passphrase for using your private key - mandatory when
|
|||
homedirectory |
name of the home directory (where keyrings AND gpg.exe are located)
|
|||
passphrasefd |
File descriptor for entering passphrase - defaults to 0 (standard input).
|
|||
exitcode |
Exit code from GnuPG process (0 = success; otherwise an error occured)
|
|||
verbose |
Verbose level (NoVerbose, Verbose, VeryVerbose).
Defaults to NoVerbose.
|
|||
ProcessTimeOutMilliseconds |
Timeout for GnuPG process, in milliseconds.
If the process doesn't exit before the end of the timeout period, the process is terminated (killed).
Defaults to 10000 (10 seconds).
|
|||
BuildOptions |
Generate a string of GnuPG command line arguments, based on the properties
set in this object (e.g. if the
|
|||
ExecuteCommand |
Execute the GnuPG command defined by all parameters/options/properties.
Raise a GnuPGException whenever an error occurs.
|
|||
StandardOutputReader |
Reader thread for standard output
Updates the private variable _outputString (locks it first)
|
|||
StandardErrorReader |
Reader thread for standard error
Updates the private variable _errorString (locks it first)
|
|||
_command | ||||
_armor | ||||
_yes | ||||
_recipient | ||||
_homedirectory | ||||
_bindirectory | ||||
_passphrase | ||||
_passphrasefd | ||||
_verbose | ||||
_batch | ||||
_originator | ||||
_ProcessTimeOutMilliseconds | ||||
_exitcode | ||||
_processObject | ||||
_outputString | ||||
_errorString |