Posts

Showing posts from October, 2022

Android SQLite

  Open Source JAVA An example of a simple Android application for working with the SQLite database. The application can create, add, browse and edit entries and export and import the database. You can easily add support for national alphabets if you use a ready-made class  https://github.com/vallshmeleff/-unicode We also use a ready-made  RSACode class for RSA encryption   https://github.com/vallshmeleff/androidrsa   For example, we will encrypt only one field in each record - the field NOTES  Tested API  29   Open Source JAVA  

Android Open Source

Image
  JAVA Code Application for working with SQLite database. Added a class for exporting/importing a database to the Download folder. And a class with methods for creating and updating a dAndroid SQLite atabase has been added. https://github.com/vallshmeleff/sqlite The exported database was transferred to a Windows computer in SQlite3, read and exported to Excel     https://github.com/vallshmeleff/sqlite/blob/main/sqlitexport.jpg JAVA Code

Android Open Source

  Java RSA A repository has been created that contains JAVA source codes for working with asymmetric RSA encryption. A special Java class has been created. It is shown how to generate encryption keys, encode and decode text, save and restore keys (for exchange, reuse). Tested on API 29  Then we use this JAVA code in the SQLite database for encryption. GitHUB Repository  https://github.com/vallshmeleff/androidrsa    Android JAVA