Add document signature verification app

This commit is contained in:
Roberto Rosario
2011-12-04 05:52:09 -04:00
parent 071fed8996
commit 071139c5bf
20 changed files with 884 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
class GPGException(Exception):
pass
class GPGVerificationError(GPGException):
pass
class GPGSigningError(GPGException):
pass
class GPGDecryptionError(GPGException):
pass
class KeyDeleteError(GPGException):
pass
class KeyGenerationError(GPGException):
pass
class KeyFetchingError(GPGException):
pass
class KeyDoesNotExist(GPGException):
pass