Is there any documentation for native database enc...
# multiplatform
j
Is there any documentation for native database encryption in SQLDelight? I see that SQLDelight(v1.5.2) offers to set
encryptionConfig = DatabaseConfiguration.Encryption(key: String?, rekey: String?)
and I suppose it works fine. But is there any documented behavior for using
DatabaseConfiguration.Encryption
?
Copy code
encryptionConfig = DatabaseConfiguration.Encryption(
    key = cipherKey
)
seems to do the job of encrypting the database. I am curious if it really is the way. But I am unable to find documentation or commits to confirm the same.
@kpgalligan can you please shed some light?