如果我像这样推进Bitbucket:
C:\My Projects\repo>hg push https://user:passd@bitbucket.org/user/repo/
pushing to https://user:***@bitbucket.org/user/repo/
searching for changes
no changes found
第一行是我输入的内容:
C:\My Projects\repo>hg push https://user:pass@bitbucket.org/user/repo/
但Mercurial的消息隐藏了输入的密码:
pushing to https://user:***@bitbucket.org/user/repo/
这是否意味着我的密码在通过公共WiFi连接传输之前已加密,因此是安全的?
答案 0 :(得分:-2)
如果它使用SSL,则应在发送密码之前对其进行加密。 mercurial是否使用它在mercurial web服务器配置中指定。
push_ssl
是否要求通过SSL传输入站推送以防止密码嗅探。默认为True。