xtra AESCrypt -- v0.1 (c) 2019 Valentin Schmidt AESCrypt xtra implements strong AES-256 encryption. It's based on the source code of "AES Crypt" (https://www.aescrypt.com) and therefor compatible with all its other implementations/ports (win/mac/linux/android/python/java/c#). Interface: ========== *encryptFile string infile, string outfile, string password -- Returns either TRUE for success or error message as string *decryptFile string infile, string outfile, string password -- Returns either TRUE for success or error message as string *encryptByteArray object inByteArray, string password -- Returns either encrypted byteArray or error message as string *decryptByteArray object inByteArray, string password -- Returns either decrypted byteArray or error message as string