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
{{ message }}
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.
OneDriveAPISession is using keyring at the moment and this requires some specifics from the environment that it is running on. Changing to a nice encryption method (like keyring).
I've tested encrypting and decrypting the same content that is saved into keyring at the moment generated by pickle (a byte-like representation of the session object) and works fine.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
OneDriveAPISession is using keyring at the moment and this requires some specifics from the environment that it is running on. Changing to a nice encryption method (like keyring).
one good start: https://cryptography.io/en/latest/fernet/#using-passwords-with-fernet.
The salt could be generated once and stored in the default config file, so it can be changed by the user if necessary.
The password could be some env variable, saved into a file or even as an argument. Remembering that this password/salt is specific per user.
The text was updated successfully, but these errors were encountered: