some documentation; overhauled PGPKey.sign by splitting it into multiple methods; reimplemented almost all of TestPGPKey in test_05_actions

This commit is contained in:
Michael Greene
2014-10-01 21:47:31 -07:00
parent f8ec3055ed
commit e600be8921
23 changed files with 965 additions and 687 deletions

View File

@@ -22,6 +22,11 @@ class PGPOpenSSLCipherNotSupported(Exception):
pass
class PGPInsecureCipher(Exception):
"""Raised when a cipher known to be insecure is attempted to be used to encrypt data"""
pass
class WontImplementError(NotImplementedError):
"""Raised when something that is not implemented, will not be implemented"""
pass