get signature even if it's a bad signature (what is a good signature ?)

This commit is contained in:
Yann Leboulanger 2005-01-23 10:20:39 +00:00
parent 544eefd3ac
commit e067c874b8
1 changed files with 3 additions and 1 deletions

View File

@ -147,7 +147,7 @@ else:
proc = self.run(['--verify', '--enable-special-filenames', '-', '-&%s'%fd], create_fhs=['stdin', 'status', 'stderr'])
file.close
file.close()
sign = self.addHeaderFooter(sign, 'SIGNATURE')
proc.handles['stdin'].write(sign)
proc.handles['stdin'].close()
@ -163,6 +163,8 @@ else:
keyid = ''
if resp.has_key('GOODSIG'):
keyid = string.split(resp['GOODSIG'])[0]
if resp.has_key('BADSIG'):
keyid = string.split(resp['BADSIG'])[0]
return keyid
def get_secret_keys(self):