index
:
lilliput-ae-reference-implementation
master
Implementations of Lilliput-AE submitted to the NIST LWC standardization process
PACLIDO consortium
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
add_python
/
lilliput
/
helpers.py
blob: 048aac7e7d44590c599d99a31a7f8d023519537f (
plain
)
1
2
def xor(array1, array2): return [a1^a2 for (a1, a2) in zip(array1, array2)]