Hello guys, is there any way to do encryption on S...
# multiplatform
b
Hello guys, is there any way to do encryption on SQLDelight on desktop/jvm ? I know that we can do it on Android and iOS. How to do it on desktop/jvm ?
e
Probably by using sqlcipher. There was also an interesting POC using the AndroidX KMP SQLite library to implement it using SQLite Encryption Extension, but I can't find that now. It was actually wrapping SQLCipher, and was from this talk (starts at about 13:00)
m
Out of interest, is there are way to encrypt on Android/iOS without sqlcipher?
b
@eygraber I think the talk you have shared is about doing it on the Android target. I wanna know how to do it on desktop/jvm.
Can we use SQLCipher on desktop/jvm as well ? Is there any open source example of this ?
e
@Binish Mathew AndroidX KMP SQLite and SqlCipher are both available on desktop/JVM
b
Sure. Thanks a lot. I will try this.