summaryrefslogtreecommitdiff
path: root/python/lilliput_ae_2.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/lilliput_ae_2.py')
-rw-r--r--python/lilliput_ae_2.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/python/lilliput_ae_2.py b/python/lilliput_ae_2.py
index cb1d1c4..f455f43 100644
--- a/python/lilliput_ae_2.py
+++ b/python/lilliput_ae_2.py
@@ -98,7 +98,7 @@ def MessageEncryption(M, N, tag, key) :
return C
################################################################################
-def SCT2Enc(A, M, N, key) :
+def encrypt(A, M, N, key) :
K = list(key)
Auth = BuildAuth(TWEAK_BITS, A, K)
@@ -108,8 +108,9 @@ def SCT2Enc(A, M, N, key) :
return BlockbytesMatrixToBytes(C), bytes(tag)
-def SCT2Dec(A, C, N, tag, key) :
+def decrypt(A, C, N, tag, key) :
K = list(key)
+ tag = list(tag)
M = BlockbytesMatrixToBytes(
MessageEncryption(C, N, tag, K)