Re: [sqlite] sqlite: see: encryption

2019-09-04 Thread Jens Alfke
> On Sep 2, 2019, at 11:41 PM, Vadiraj Villivalam > wrote: > > With the open os like android providing keystore and key generation > mechanism, we want to switch to this secure key generation mechanism and > avoid generating key ourselves. As the key store does not allow the key > itself to

Re: [sqlite] sqlite: see: encryption

2019-09-03 Thread Kees Nuyt
On Tue, 3 Sep 2019 12:11:32 +0530, Vadiraj Villivalam wrote: > Hi, > > Our client software uses sqlite for persistence and db is currently > encrypted by passing a app generated key to SEE. > With the open os like android providing keystore and key generation > mechanism, we want to switch to

Re: [sqlite] sqlite: see: encryption

2019-09-03 Thread Simon Slavin
On 3 Sep 2019, at 7:41am, Vadiraj Villivalam wrote: > As the key store does not allow the key > itself to be exported out, I would like to know if sqlite has a mechanism to > leverage the key store way of en/decrypting it (could be with a callback > implemented by app that interfaces with

[sqlite] sqlite: see: encryption

2019-09-03 Thread Vadiraj Villivalam
Hi, Our client software uses sqlite for persistence and db is currently encrypted by passing a app generated key to SEE. With the open os like android providing keystore and key generation mechanism, we want to switch to this secure key generation mechanism and avoid generating key ourselves. As