Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 390 Bytes

File metadata and controls

13 lines (10 loc) · 390 Bytes

AndroidSecureStorage

How to keep secure data using Android KeyStore System (from API 19+).

The App is composed for 3 classes:

  • EnCryptor
  • DeCryptor
  • MainActivity

There is a different way to encrypt/decrypt data based on Android KeyStore System:

  • One for 19<=API<23
  • Other for API>=23

The purpose of this app is to cover both types (EnCryptor/DeCryptor selects the correct method)