Are stateful services encrypted? #1467
Answered
by
aritchie
TomasMalcanek
asked this question in
Q&A
-
I am using stateful services and I have a question, whether the stateful services are saved into the SecureStorage by default, or just in plain text somewhere. I am asking this in terms of security storing auth tokens and perhaps stored user's login password. |
Beta Was this translation helpful? Give feedback.
Answered by
aritchie
May 10, 2024
Replies: 1 comment 1 reply
-
They can be stored in secure storage if you want [ObjectBinder("secure")]
public interface IWhatever : INotifyPropertyChanged .... Otherwise they go to the default store on the platform which is settings for both Android & iOS |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
TomasMalcanek
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
They can be stored in secure storage if you want
Otherwise they go to the default store on the platform which is settings for both Android & iOS