代理设置页面指出,使用显式设置可以对密码进行加密:
choco config set proxyPassword <passwordThatGetsEncryptedInFile> # optional
https://github.com/chocolatey/choco/wiki/Proxy-Settings-for-Chocolatey#explicit-proxy-settings
准确地说,它是真正加密的还是散列的?
最佳答案
密码已加密。
您可以在这里看到实际效果:
https://github.com/chocolatey/choco/blob/4944318adfff2ea3fe910b4274f87bb3cf57e736/src/chocolatey/infrastructure.app/builders/ConfigurationBuilder.cs#L379
实现在这里:
https://github.com/chocolatey/choco/blob/19cdf4b0da51fcb5e12d9b616971e605a3ff7c9a/src/chocolatey/infrastructure.app/nuget/NugetEncryptionUtility.cs#L25
关于chocolatey - 代理密码是加密的还是散列的?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42922895/