svn -- 如何保存密码,但不是明文?

Ven*_*tta 5 linux svn

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

S.S*_*ker 4

~/.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
Run Code Online (Sandbox Code Playgroud)