Search found 3 matches

by Natasha78
Fri Jun 16, 2023 7:20 am
Forum: AES Crypt
Topic: How to build AES Crypt for Android shared Library ( JNI )
Replies: 21
Views: 44179

Re: How to build AES Crypt for Android shared Library ( JNI )

hello guys, Follow these steps to create AES Crypt for Android shared library (JNI): Create an Android development environment. In C/C++, implement the AES Crypt encryption and decryption routines. Make a JNI wrapper to connect the C/C++ code to Java. Using the Android NDK, create the shared library...
by Natasha78
Tue May 23, 2023 9:07 am
Forum: AES Crypt
Topic: How to build AES Crypt for Android shared Library ( JNI )
Replies: 21
Views: 44179

Re: How to build AES Crypt for Android shared Library ( JNI )

To build AES Crypt for Android as a shared library (JNI), you can follow these steps: Set up the Android NDK (Native Development Kit) on your development machine. Create a new Android project or open an existing one. Create a new JNI folder in your project's directory to store the native code. Write...
by Natasha78
Wed May 10, 2023 6:47 am
Forum: AES Crypt
Topic: How to build AES Crypt for Android shared Library ( JNI )
Replies: 21
Views: 44179

Re: How to build AES Crypt for Android shared Library ( JNI

What format is the text in when enteref into Android? It might already be UTF-16LE, in which case no conservation is even needed. If no conversion is needed, you can just remove the call to iconv(). If conversion is needed, you just need to know the input character encoding used. The conversion pro...