You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is currently a method to save the Vault to a file, but no way to get the string that will be written to allow alternate storage. It would be nice to have a method with the following signature
public string SaveStore() { }
You could just extract the beginning of the current method and call this one to write to the file. Then if we need to send it to some other storage (other than File), we could just get the encrypted string.
Thanks
David Gauerke
The text was updated successfully, but these errors were encountered:
I have created a work-around that saves the encrypted file to the Temp folder, then read the contents and delete the file. Not pretty, but will work for now.
There is currently a method to save the Vault to a file, but no way to get the string that will be written to allow alternate storage. It would be nice to have a method with the following signature
public string SaveStore() { }
You could just extract the beginning of the current method and call this one to write to the file. Then if we need to send it to some other storage (other than File), we could just get the encrypted string.
Thanks
David Gauerke
The text was updated successfully, but these errors were encountered: