svn – 如何保存密码,但不是纯文本?

我在fluxbox上使用svn 1.8。 看来我必须设置store-plaintext-passwords = yes才能使密码保存起作用。 但我不想以纯文本保存我的密码。

~/.subversion/config文件中只需添加有效的密码存储。 例如我的配置:

 ### Section for authentication and authorization customizations. [auth] ### Set password stores used by Subversion. They should be ### delimited by spaces or commas. The order of values determines ### the order in which password stores are used. ### Valid password stores: ### gnome-keyring (Unix-like systems) ### kwallet (Unix-like systems) ### gpg-agent (Unix-like systems) ### keychain (Mac OS X) ### windows-cryptoapi (Windows) password-stores = gpg-agent,gnome-keyring,kwallet ### To disable all password stores, use an empty list: password-stores = yes