You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PowerShell Core currently uses some APIs that only take plain password text, because the overloads that take SecureString is not available in .NET Core. But once they become available, we need to update our code to switch to the latter.
Instances: (not a complete list)
Constructor of NetworkCredential at Credential.cs
Constructor of X509Certificate2 in CertificateCommands.cs ProcessStartInfo.PasswordInClearText at [Process.cs]
PowerShell Core currently uses some APIs that only take plain password text, because the overloads that take
SecureStringis not available in .NET Core. But once they become available, we need to update our code to switch to the latter.Instances: (not a complete list)
Constructor of
NetworkCredentialatCredential.csConstructor of
X509Certificate2inCertificateCommands.csProcessStartInfo.PasswordInClearTextat [Process.cs]Feel free to update this list when you spot one.