为SVN存储明文密码

我在Windows上,使用SVN作为SharpSVN库的一部分。 我需要以纯文本存储我的密码。 我试图把我的servers文件中的以下内容:

 store-passwords = yes store-plaintext-passwords = yes store-auth-creds = yes store-ssl-client-cert-pp-plaintext = yes 

这是我在config文件中的:

 ### To disable all password stores, use an empty list: password-stores = 

然而,这是我在检出版本库后在\ auth \ svn.simple \ 0675 ..文件中看到的内容:

 K 8 passtype V 8 wincrypt K 8 password V 372 AQAA... 

我在这里做错了什么?

根据SVNBook ,configuration选项store-plaintext-passwords不能强制Subversion客户端以纯文本格式(例如未encryption的forms)存储密码。

该选项的任务是控制Subversion客户端如何以非纯文本格式保存密码的情况下的反应。