aboutsummaryrefslogtreecommitdiffstats
path: root/src/python/botan2.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/botan2.py')
-rwxr-xr-xsrc/python/botan2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/botan2.py b/src/python/botan2.py
index f28638334..2a1131df5 100755
--- a/src/python/botan2.py
+++ b/src/python/botan2.py
@@ -814,7 +814,7 @@ def test():
mce_decrypt = mceies_decrypt(mce_priv, 'ChaCha20Poly1305', mce_ciphertext, mce_ad)
print(" mceies plaintext \'%s\' (%d)" % (mce_plaintext, len(mce_plaintext)))
-
+
# Since mceies_decrypt() returns bytes in Python3, the following line
# needs .decode('utf-8') to convert mce_decrypt from bytes to a
# text string (Unicode).