Link: Android Encryption / Decryption Problem (AES)
I am creating an Android application that needs to decrypt a really large package (~ 50 MB), and it is very slow when it is implemented in the aes decryption engine built into android (about 5 minutes).
Based on the above posts in SO, I tried using ndk and tried to load my own libraries (openssl) for use in this application. However, openssl for android has a really large number of files, and I don’t know which ones to use to create the .so file.
I am pretty inexperienced with using ndk and native code in Android apps and find any suggestions / code examples on how to use the openssl library to decrypt aes is really useful.
Thanks in advance, Naveen
source
share