0

I have a realm object with sensitive and not sensitive fields and I wanna encrypt just some fields of my object. Is it possible to do it in Realm database?

Rid Hrant
  • 112
  • 1
  • 1
  • 11

1 Answers1

1

Realm encryption applies to the whole database. To encrypt specific columns in your database you will need to roll your own encryption. There is some discussion using the javax.crypto library here

Vague
  • 2,198
  • 3
  • 18
  • 46