Replies: 3 comments
-
You could try to encode the password before saving. The secret storage is more intended to store tokens (like OAuth) instead of passwords though. A longer password is better than a complex short password AFAIK ;-) |
Beta Was this translation helpful? Give feedback.
-
I use B64 to encrypt my passwords and onyl store the encrypted string. But I would also welcome the feature to store more complex strings as Base64 is not unicode complete. |
Beta Was this translation helpful? Give feedback.
-
Hi guys, just letting you know that the It happens that when trying to store some information in the secret some people had some issues with more complex strings on Android. Feel free to investigate how to support a wider range of characters, the code is in
|
Beta Was this translation helpful? Give feedback.
-
Feature Request
Is it possible to allow more complex secrets? The very simple allowed secrets of regex [a-zA-Z0-9-]+ are to weak for a good password to encrypt and store.
Feature Description
A complex password is state of the art. So the secret property should be able to consume complex strings with including special characters (UTF-8).
Btw great update for this plugin! 👍 Thanks
Beta Was this translation helpful? Give feedback.
All reactions