6 references to EncryptionUtility
NuGet.Configuration (6)
PackageSource\PackageSourceCredential.cs (2)
60return EncryptionUtility.DecryptString(PasswordText); 158var passwordText = storePasswordInClearText ? password : EncryptionUtility.EncryptString(password);
Settings\Items\FileClientCertItem.cs (2)
110result = EncryptionUtility.DecryptString(encryptedPassword); 193var encryptedPassword = EncryptionUtility.EncryptString(password!);
Utility\SettingsUtility.cs (2)
150var decryptedString = EncryptionUtility.DecryptString(encryptedString); 181elementValue = EncryptionUtility.EncryptString(value!);