Best Practices for Securely Storing JWT Tokens in an AvaloniaUI Desktop Application #18293
Unanswered
VietNT2011
asked this question in
Q&A
Replies: 1 comment
-
The easiest and (even more important) portable option would be to safe encoded file containing your key.
You also need to remember that no data on a user machine is fundamentally secret. Any key embedded in your application can be decompiled and used to read these files. That's typically okay for JWT tokens, though. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone,
I’m currently working on an AvaloniaUI desktop application and need advice on the best practices for securely storing JWT tokens. Specifically:
What is the recommended way to store JWT tokens in AvaloniaUI applications to ensure security?
Any guidance, code examples, or references to best practices would be greatly appreciated.
Thank you! 🙏
Beta Was this translation helpful? Give feedback.
All reactions