AndroidCryptoHelper is a light library that helps to handle cryptography using the Keystore module in android.
To perform AES Cryptography, you need to call the:
val encryptedbytes = AesCryptomanager().encrypt(bytes: ByteArray, outputStream: OutputStream)
val decryptedBytes = AesCryptomanager().decrypt(inputStream: InputStream)