Does anybody has experience with SwiftCrypto usage...
# kotlin-native
m
Does anybody has experience with SwiftCrypto usage with Kotlin? I am asking since I am in need of crypto and to do it with objective-c interop looks super error prone.
m
As far as I understand you can't use Swift directly from Kotlin as there is no interop. You'll either need to do it with obj-c or something like this
m
Thx that helps!
Oh well...I guess you need go then the long way -> Swift to Objective-C -> Kotlin
s
Consider doing it in KMM, we used this lib: https://github.com/korlibs/krypto with success
m
Thanks for the advise, however the library does not fit my needs...however meanwhile I think have a pretty good idea how to tackle Crypto in KMP/KMM.