Orc.NuGetExplorer.Native.CredentialsPrompter.GetPasswordConfigurationKey C# (CSharp) Method

GetPasswordConfigurationKey() private static method

private static GetPasswordConfigurationKey ( string key, string username ) : string
key string
username string
return string
        private static string GetPasswordConfigurationKey(string key, string username)
        {
            var configurationKeyPostfix = string.Format("{0}__{1}", key, username);
            configurationKeyPostfix = EncryptionHelper.GetMd5Hash(configurationKeyPostfix);
            
            var configurationKey = string.Format("NuGet.FeedInfo.{0}", configurationKeyPostfix);
            return configurationKey;
        }