I am using Pyme to interface with GPGME and have had no problems signing / encrypting. When I try to decrypt, however, it always brings up the prompt for the passphrase despite having set it via a c.set_passphrase_cb callback. Am I doing something wrong?
feedback
|
|
I have a similar problem. My code looks like this: def passphrase_callback(hint='', desc='', prev_bad=''): return 'password' class CryptoEngine: class NoSignKeys(Exception): def init(self, str): Exception.init(self, str)
Despite setting the passphrase callback I still either get a message box asking for the passphrase or just an exception notifying of a bad password. Did someone solve this problem and could share his knowledge? Thanks, Yan | |||
|
feedback
|