Windows-powershell / PowerShell-master /src /Microsoft.PowerShell.Commands.Utility /commands /utility /GetHash.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Collections.ObjectModel; | |
| using System.Diagnostics; | |
| using System.IO; | |
| using System.Management.Automation; | |
| using System.Security.Cryptography; | |
| namespace Microsoft.PowerShell.Commands | |
| { | |
| /// <summary> | |
| /// This class implements Get-FileHash. | |
| /// </summary> | |
| [] | |
| [] | |
| public class GetFileHashCommand : HashCmdletBase | |
| { | |
| /// <summary> | |
| /// Path parameter. | |
| /// The paths of the files to calculate hash values. | |
| /// Resolved wildcards. | |
| /// </summary> | |
| /// <value></value> | |
| [] | |
| public string[] Path | |
| { | |
| get | |
| { | |
| return _paths; | |
| } | |
| set | |
| { | |
| _paths = value; | |
| } | |
| } | |
| /// <summary> | |
| /// LiteralPath parameter. | |
| /// The literal paths of the files to calculate a hashs. | |
| /// Don't resolved wildcards. | |
| /// </summary> | |
| /// <value></value> | |
| [] | |
| [] | |
| public string[] LiteralPath | |
| { | |
| get | |
| { | |
| return _paths; | |
| } | |
| set | |
| { | |
| _paths = value; | |
| } | |
| } | |
| private string[] _paths; | |
| /// <summary> | |
| /// InputStream parameter. | |
| /// The stream of the file to calculate a hash. | |
| /// </summary> | |
| /// <value></value> | |
| [] | |
| public Stream InputStream { get; set; } | |
| /// <summary> | |
| /// ProcessRecord() override. | |
| /// This is for paths collecting from pipe. | |
| /// </summary> | |
| protected override void ProcessRecord() | |
| { | |
| List<string> pathsToProcess = new(); | |
| ProviderInfo provider = null; | |
| switch (ParameterSetName) | |
| { | |
| case PathParameterSet: | |
| // Resolve paths and check existence | |
| foreach (string path in _paths) | |
| { | |
| try | |
| { | |
| Collection<string> newPaths = Context.SessionState.Path.GetResolvedProviderPathFromPSPath(path, out provider); | |
| if (newPaths != null) | |
| { | |
| pathsToProcess.AddRange(newPaths); | |
| } | |
| } | |
| catch (ItemNotFoundException e) | |
| { | |
| if (!WildcardPattern.ContainsWildcardCharacters(path)) | |
| { | |
| ErrorRecord errorRecord = new(e, | |
| "FileNotFound", | |
| ErrorCategory.ObjectNotFound, | |
| path); | |
| WriteError(errorRecord); | |
| } | |
| } | |
| } | |
| break; | |
| case LiteralPathParameterSet: | |
| foreach (string path in _paths) | |
| { | |
| string newPath = Context.SessionState.Path.GetUnresolvedProviderPathFromPSPath(path); | |
| pathsToProcess.Add(newPath); | |
| } | |
| break; | |
| } | |
| foreach (string path in pathsToProcess) | |
| { | |
| if (ComputeFileHash(path, out string hash)) | |
| { | |
| WriteHashResult(Algorithm, hash, path); | |
| } | |
| } | |
| } | |
| private byte[] ComputeHash(Stream stream) | |
| { | |
| switch (Algorithm) | |
| { | |
| case HashAlgorithmNames.SHA1: | |
| return SHA1.HashData(stream); | |
| case HashAlgorithmNames.SHA256: | |
| return SHA256.HashData(stream); | |
| case HashAlgorithmNames.SHA384: | |
| return SHA384.HashData(stream); | |
| case HashAlgorithmNames.SHA512: | |
| return SHA512.HashData(stream); | |
| case HashAlgorithmNames.MD5: | |
| return MD5.HashData(stream); | |
| } | |
| Debug.Assert(false, "invalid hash algorithm"); | |
| return SHA256.HashData(stream); | |
| } | |
| /// <summary> | |
| /// Perform common error checks. | |
| /// Populate source code. | |
| /// </summary> | |
| protected override void EndProcessing() | |
| { | |
| if (ParameterSetName == StreamParameterSet) | |
| { | |
| byte[] bytehash = ComputeHash(InputStream); | |
| string hash = Convert.ToHexString(bytehash); | |
| WriteHashResult(Algorithm, hash, string.Empty); | |
| } | |
| } | |
| /// <summary> | |
| /// Read the file and calculate the hash. | |
| /// </summary> | |
| /// <param name="path">Path to file which will be hashed.</param> | |
| /// <param name="hash">Will contain the hash of the file content.</param> | |
| /// <returns>Boolean value indicating whether the hash calculation succeeded or failed.</returns> | |
| private bool ComputeFileHash(string path, out string hash) | |
| { | |
| Stream openfilestream = null; | |
| hash = null; | |
| try | |
| { | |
| openfilestream = File.OpenRead(path); | |
| byte[] bytehash = ComputeHash(openfilestream); | |
| hash = Convert.ToHexString(bytehash); | |
| } | |
| catch (FileNotFoundException ex) | |
| { | |
| var errorRecord = new ErrorRecord( | |
| ex, | |
| "FileNotFound", | |
| ErrorCategory.ObjectNotFound, | |
| path); | |
| WriteError(errorRecord); | |
| } | |
| catch (UnauthorizedAccessException ex) | |
| { | |
| var errorRecord = new ErrorRecord( | |
| ex, | |
| "UnauthorizedAccessError", | |
| ErrorCategory.InvalidData, | |
| path); | |
| WriteError(errorRecord); | |
| } | |
| catch (IOException ioException) | |
| { | |
| var errorRecord = new ErrorRecord( | |
| ioException, | |
| "FileReadError", | |
| ErrorCategory.ReadError, | |
| path); | |
| WriteError(errorRecord); | |
| } | |
| finally | |
| { | |
| openfilestream?.Dispose(); | |
| } | |
| return hash != null; | |
| } | |
| /// <summary> | |
| /// Create FileHashInfo object and output it. | |
| /// </summary> | |
| private void WriteHashResult(string Algorithm, string hash, string path) | |
| { | |
| FileHashInfo result = new(); | |
| result.Algorithm = Algorithm; | |
| result.Hash = hash; | |
| result.Path = path; | |
| WriteObject(result); | |
| } | |
| /// <summary> | |
| /// Parameter set names. | |
| /// </summary> | |
| private const string PathParameterSet = "Path"; | |
| private const string LiteralPathParameterSet = "LiteralPath"; | |
| private const string StreamParameterSet = "StreamParameterSet"; | |
| } | |
| /// <summary> | |
| /// Base Cmdlet for cmdlets which deal with crypto hashes. | |
| /// </summary> | |
| public class HashCmdletBase : PSCmdlet | |
| { | |
| /// <summary> | |
| /// Algorithm parameter. | |
| /// The hash algorithm name: "SHA1", "SHA256", "SHA384", "SHA512", "MD5". | |
| /// </summary> | |
| /// <value></value> | |
| [] | |
| [ | |
| ] | |
| public string Algorithm | |
| { | |
| get | |
| { | |
| return _Algorithm; | |
| } | |
| set | |
| { | |
| // A hash algorithm name is case sensitive | |
| // and always must be in upper case | |
| _Algorithm = value.ToUpper(); | |
| } | |
| } | |
| private string _Algorithm = HashAlgorithmNames.SHA256; | |
| /// <summary> | |
| /// Hash algorithm names. | |
| /// </summary> | |
| internal static class HashAlgorithmNames | |
| { | |
| public const string MD5 = "MD5"; | |
| public const string SHA1 = "SHA1"; | |
| public const string SHA256 = "SHA256"; | |
| public const string SHA384 = "SHA384"; | |
| public const string SHA512 = "SHA512"; | |
| } | |
| } | |
| /// <summary> | |
| /// FileHashInfo class contains information about a file hash. | |
| /// </summary> | |
| public class FileHashInfo | |
| { | |
| /// <summary> | |
| /// Hash algorithm name. | |
| /// </summary> | |
| public string Algorithm { get; set; } | |
| /// <summary> | |
| /// Hash value. | |
| /// </summary> | |
| public string Hash { get; set; } | |
| /// <summary> | |
| /// File path. | |
| /// </summary> | |
| public string Path { get; set; } | |
| } | |
| } | |