You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:param str arg: The arguments which will be passed to the GnuPG
process, and, optionally their corresponding values.
The values are any additional arguments following the
GnuPG option or flag. For example, if we wanted to
pass ``"--encrypt --recipient [email protected]"`` to
GnuPG, then ``"--encrypt"`` would be an arg without a
value, and ``"--recipient"`` would also be an arg,
with a value of ``"[email protected]"``.
The text was updated successfully, but these errors were encountered:
Question: How to Python gnupg (GPG) encrypt with recipient's email address rather than their fingerprint? https://stackoverflow.com/questions/72355601/how-to-python-gnupg-gpg-encrypt-with-recipients-email-address-rather-than-the
fwiw, code excerpt from
_check_option()
:The text was updated successfully, but these errors were encountered: