Skip to content
Snippets Groups Projects
Commit 36fb871b authored by Philipp Hörist's avatar Philipp Hörist
Browse files

Remove logging encryption result

parent 0a287023
No related branches found
No related tags found
No related merge requests found
......@@ -145,7 +145,6 @@ def aes_encrypt(key, nonce, plaintext):
""" Use AES128 GCM with the given key and iv to encrypt the payload. """
c, t = gcm_encrypt(key, nonce, plaintext, '')
result = c + t
log.info(result)
return result
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment