Windows-powershell / PowerShell-master /src /Microsoft.PowerShell.Security /security /CertificateCommands.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System.Collections.Generic; | |
| using System.Diagnostics.CodeAnalysis; | |
| using System.Management.Automation; | |
| using System.Security; | |
| using System.Security.Cryptography; | |
| using System.Security.Cryptography.X509Certificates; | |
| using Dbg = System.Management.Automation.Diagnostics; | |
| namespace Microsoft.PowerShell.Commands | |
| { | |
| /// <summary> | |
| /// Defines the implementation of the get-pfxcertificate cmdlet. | |
| /// </summary> | |
| [] | |
| [] | |
| public sealed class GetPfxCertificateCommand : PSCmdlet | |
| { | |
| /// <summary> | |
| /// Gets or sets the path of the item for which to obtain the | |
| /// certificate. | |
| /// </summary> | |
| [] | |
| public string[] FilePath | |
| { | |
| get | |
| { | |
| return _path; | |
| } | |
| set | |
| { | |
| _path = value; | |
| } | |
| } | |
| private string[] _path; | |
| /// <summary> | |
| /// Gets or sets the literal path of the item for which to obtain the | |
| /// certificate. | |
| /// </summary> | |
| [] | |
| [] | |
| [] | |
| public string[] LiteralPath | |
| { | |
| get | |
| { | |
| return _path; | |
| } | |
| set | |
| { | |
| _path = value; | |
| _isLiteralPath = true; | |
| } | |
| } | |
| private bool _isLiteralPath = false; | |
| /// <summary> | |
| /// Gets or sets the password for unlocking the certificate. | |
| /// </summary> | |
| [] | |
| public SecureString Password { get; set; } | |
| /// <summary> | |
| /// Do not prompt for password if not given. | |
| /// </summary> | |
| [] | |
| public SwitchParameter NoPromptForPassword { get; set; } | |
| // | |
| // list of files that were not found | |
| // | |
| private readonly List<string> _filesNotFound = new(); | |
| /// <summary> | |
| /// Initializes a new instance of the GetPfxCertificateCommand | |
| /// class. | |
| /// </summary> | |
| public GetPfxCertificateCommand() : base() | |
| { | |
| } | |
| /// <summary> | |
| /// Processes records from the input pipeline. | |
| /// For each input file, the command retrieves its | |
| /// corresponding certificate. | |
| /// </summary> | |
| protected override void ProcessRecord() | |
| { | |
| // | |
| // this cannot happen as we have specified the Path | |
| // property to be a mandatory parameter | |
| // | |
| Dbg.Assert((FilePath != null) && (FilePath.Length > 0), | |
| "GetCertificateCommand: Param binder did not bind path"); | |
| X509Certificate2 cert = null; | |
| foreach (string p in FilePath) | |
| { | |
| List<string> paths = new(); | |
| // Expand wildcard characters | |
| if (_isLiteralPath) | |
| { | |
| paths.Add(SessionState.Path.GetUnresolvedProviderPathFromPSPath(p)); | |
| } | |
| else | |
| { | |
| try | |
| { | |
| foreach (PathInfo tempPath in SessionState.Path.GetResolvedPSPathFromPSPath(p)) | |
| { | |
| paths.Add(tempPath.ProviderPath); | |
| } | |
| } | |
| catch (ItemNotFoundException) | |
| { | |
| _filesNotFound.Add(p); | |
| } | |
| } | |
| foreach (string resolvedPath in paths) | |
| { | |
| string resolvedProviderPath = | |
| SecurityUtils.GetFilePathOfExistingFile(this, resolvedPath); | |
| if (resolvedProviderPath == null) | |
| { | |
| _filesNotFound.Add(p); | |
| } | |
| else | |
| { | |
| if (Password == null && !NoPromptForPassword.IsPresent) | |
| { | |
| try | |
| { | |
| cert = GetCertFromPfxFile(resolvedProviderPath, null); | |
| WriteObject(cert); | |
| continue; | |
| } | |
| catch (CryptographicException) | |
| { | |
| Password = SecurityUtils.PromptForSecureString( | |
| Host.UI, | |
| CertificateCommands.GetPfxCertPasswordPrompt); | |
| } | |
| } | |
| try | |
| { | |
| cert = GetCertFromPfxFile(resolvedProviderPath, Password); | |
| } | |
| catch (CryptographicException e) | |
| { | |
| ErrorRecord er = new( | |
| e, | |
| "GetPfxCertificateUnknownCryptoError", | |
| ErrorCategory.NotSpecified, | |
| targetObject: null); | |
| WriteError(er); | |
| continue; | |
| } | |
| WriteObject(cert); | |
| } | |
| } | |
| } | |
| if (_filesNotFound.Count > 0) | |
| { | |
| if (_filesNotFound.Count == FilePath.Length) | |
| { | |
| ErrorRecord er = | |
| SecurityUtils.CreateFileNotFoundErrorRecord( | |
| CertificateCommands.NoneOfTheFilesFound, | |
| "GetPfxCertCommandNoneOfTheFilesFound"); | |
| ThrowTerminatingError(er); | |
| } | |
| else | |
| { | |
| // | |
| // we found some files but not others. | |
| // Write error for each missing file | |
| // | |
| foreach (string f in _filesNotFound) | |
| { | |
| ErrorRecord er = | |
| SecurityUtils.CreateFileNotFoundErrorRecord( | |
| CertificateCommands.FileNotFound, | |
| "GetPfxCertCommandFileNotFound", | |
| f | |
| ); | |
| WriteError(er); | |
| } | |
| } | |
| } | |
| } | |
| private static X509Certificate2 GetCertFromPfxFile(string path, SecureString password) | |
| { | |
| // No overload found in X509CertificateLoader that takes SecureString | |
| var cert = new X509Certificate2(path, password, X509KeyStorageFlags.DefaultKeySet); | |
| return cert; | |
| } | |
| } | |
| } | |