diff options
| author | Ben McGinnes <[email protected]> | 2018-06-16 23:28:30 +0000 | 
|---|---|---|
| committer | Ben McGinnes <[email protected]> | 2018-06-16 23:28:30 +0000 | 
| commit | 0e762608ef5a598030b8d0e56261a830e1b7b724 (patch) | |
| tree | 1a07635cc7d5e443ee523990f59e56e43372a1f7 /lang/python/src | |
| parent | script: groups.py (diff) | |
| download | gpgme-0e762608ef5a598030b8d0e56261a830e1b7b724.tar.gz gpgme-0e762608ef5a598030b8d0e56261a830e1b7b724.zip  | |
python bindings: core key import
* The foundation of a pythonic key import function authored by Jacob
  Adams.
* A unit testing script for the same function originally authored by
  Tobias Mueller
* Added DCO reference for Jacob Adams to the GPGME AUTHORS file.
* Additional details regarding this patch are available here:
  https://dev.gnupg.org/T4001
Signed-off-by: Ben McGinnes <[email protected]>
Diffstat (limited to 'lang/python/src')
| -rw-r--r-- | lang/python/src/core.py | 19 | 
1 files changed, 19 insertions, 0 deletions
diff --git a/lang/python/src/core.py b/lang/python/src/core.py index bd95d231..1b83a5d4 100644 --- a/lang/python/src/core.py +++ b/lang/python/src/core.py @@ -509,6 +509,25 @@ class Context(GpgmeWrapper):          return results +    def key_import(self, data): +        """Import data + +        Imports the given data into the Context. + +        Returns: +        result -- information about the imported data + +        Raises: +        GPGMEError      -- as signaled by the underlying library +        ValueError      -- Raised if no keys are present in the data + +        """ +        self.op_import(data) +        result = self.op_import_result() +        if result.considered == 0: +            raise ValueError +        return result +      def keylist(self, pattern=None, secret=False,                  mode=constants.keylist.mode.LOCAL,                  source=None):  | 
