| 1234567891011121314151617181920212223242526272829303132 |
- #This file can be used as user accounts storage for long-term credentials mechanism.
- #这个文件可以用作长期用户帐户存储凭证机制。
- #
- #username1:key1
- #username2:key2
- # OR:
- #username1:password1
- #username2:password2
- #
- # Keys must be generated by turnadmin utility. The key value depends
- # on user name, realm, and password:
- # 钥匙必须由turnadmin实用程序生成。键值取决于用户名称、领域和密码:
- #
- # Example:
- # 例子,使用以下命令:
- # $ turnadmin -k -u ninefingers -r north.gov -p youhavetoberealistic
- # Output: 0xbc807ee29df3c9ffa736523fb2c4e8ee
- # 输出是: 0xbc807ee29df3c9ffa736523fb2c4e8ee
- #
- # ('0x' in the beginning of the key is what differentiates the key from
- # password. If it has 0x then it is a key, otherwise it is a password).
- # ('0x'开始的关键是区分从密码的关键。如果它有0x,那么它是一个关键,否则这是一个密码)。
- #
- # The corresponding user account entry in the userdb file will be:
- # 相应的用户帐号在userdb文件中是:
- #
- #ninefingers:0xbc807ee29df3c9ffa736523fb2c4e8ee
- # Or, equivalently (less secure):
- #或者是这样(不安全的):
- #ninefingers:youhavetoberealistic
- #
- yourname:yourpsw
|