summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/lilliput_ae_1.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/python/lilliput_ae_1.py b/python/lilliput_ae_1.py
index 6ab0cc3..c9a731e 100644
--- a/python/lilliput_ae_1.py
+++ b/python/lilliput_ae_1.py
@@ -212,12 +212,6 @@ def TreatMessageDec(C, N, key) :
def OCB3Enc(A, M, N, key) :
InitParameters(len(key)*8)
- global A_BITS
- global M_BITS
-
- A_BITS = len(A)*8
- M_BITS = len(M)*8
-
K = list(key)
Auth = BuildAuth(A, K)
@@ -230,12 +224,6 @@ def OCB3Enc(A, M, N, key) :
def OCB3Dec(A, C, N, tag, key) :
InitParameters(len(key)*8)
- global A_BITS
- global M_BITS
-
- A_BITS = len(A)*8
- M_BITS = len(C)*8
-
K = list(key)
Auth = BuildAuth(A, K)