android-fhir

Privacy & Security

Database encryption

In FHIREngine, by default, we utilize Android encryption and support Android 5.0 and above. This ensures data is always encrypted at rest.

On Android 6.0 or above, FHIREngine offers additional application level database encryption via SQLChiper.

To enable database encryption, you should invoke the FhirEngineProvider#init(FhirEngineConfiguration) in your Application#onCreate before creating any instance of FhirEngine. You can select one of the two database error handlings:

Here is a code snippet of enabling database encryption with RECREATE_AT_OPEN error handling strategy:

FhirEngineProvider.init(
  FhirEngineConfiguration(
    enableEncryptionIfSupported = true,
    databaseErrorStrategy = RECREATE_AT_OPEN
  )
)

Data safety

This library does not collect or share any personal or sensitive user data with any third party libraries or SDKs.