diff options
| -rw-r--r-- | python/helpers.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/python/helpers.py b/python/helpers.py index 3d741b0..45c48c9 100644 --- a/python/helpers.py +++ b/python/helpers.py @@ -26,9 +26,7 @@ def BlockbytesMatrixToBytes(matrix): def XorState(state1, state2): - return list( - s1^s2 for (s1, s2) in zip(state1, state2) - ) + return [s1^s2 for (s1, s2) in zip(state1, state2)] def Padding10LSB(array, number_bits): |
