How can I securely save user password on CloudKit.
Im developing an app which requires a custom login. I have a separate RecordType for my users called CustomUsers
. Each record in CustomUsers
have a email
and password
key. How can I safely save the password to the server and get it back during login?
I tried to use CryptoSwift
. But I have no idea on how to handle this.