diff options
Diffstat (limited to 'src/mailman_pgp/pgp/inline.py')
| -rw-r--r-- | src/mailman_pgp/pgp/inline.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mailman_pgp/pgp/inline.py b/src/mailman_pgp/pgp/inline.py index ca83e89..3cd2aa1 100644 --- a/src/mailman_pgp/pgp/inline.py +++ b/src/mailman_pgp/pgp/inline.py @@ -263,4 +263,6 @@ class InlineWrapper: def sign_then_encrypt(self, key, *keys, hash=None, cipher=SymmetricKeyAlgorithm.AES256): - return self.sign_encrypt(key, *keys, hash=hash, cipher=cipher)
\ No newline at end of file + # TODO: sign into cleartext here and then encrypt? I mean that's weird + # but thats what sing *then* encrypt means for inline pgp. + return self.sign_encrypt(key, *keys, hash=hash, cipher=cipher) |
