How can I encrypt a file in AES EAX mode?

Is there a Python library that supports AES EAX mode? PyCrypto doesn't seem to support it.

Is there any reason it is not supported?

+3


source to share


2 answers


I would recommend that you take a look at this LibTomCrypt wrapper. It should support what you need.



+1


source


EAX (and other AEAD modes such as GCM, CCM and SIV) will soon be supported in version 2.7 of PyCrypto.



There is currently an alpha version of the PyCrypto website available for download. Alternatively, you can check out the current master branch on github .

+1


source







All Articles