Add model test. Finish file signing method. Add key signing exceptions.

This commit is contained in:
Roberto Rosario
2016-03-22 18:02:40 -04:00
parent dc5d25fd00
commit 189cda437f
10 changed files with 316 additions and 65 deletions

View File

@@ -39,3 +39,15 @@ class KeyDoesNotExist(GPGException):
class KeyImportError(GPGException):
pass
class NeedPassphrase(GPGException):
"""
Passphrase is needed but none was provided
"""
class PassphraseError(GPGException):
"""
Passphrase provided is incorrect
"""