diff --git a/reference/6/Microsoft.PowerShell.Core/About/About_Using.md b/reference/6/Microsoft.PowerShell.Core/About/About_Using.md index b6abbe721641..f834a0324955 100644 --- a/reference/6/Microsoft.PowerShell.Core/About/About_Using.md +++ b/reference/6/Microsoft.PowerShell.Core/About/About_Using.md @@ -49,7 +49,7 @@ and to `[MemoryStream]` in *System.IO*. using namespace System.IO [string]$string = "Hello World" - [string]$algorithm = "SHA256" ## Valid values are "SHA1", "SHA256", "SHA384", "SHA512", "MACTripleDES", "MD5", "RIPEMD160" + [string]$algorithm = "SHA256" ## Valid values are "SHA1", "SHA256", "SHA384", "SHA512", "MD5" [byte[]]$stringbytes = [UnicodeEncoding]::Unicode.GetBytes($string) diff --git a/reference/6/Microsoft.PowerShell.Utility/Get-FileHash.md b/reference/6/Microsoft.PowerShell.Utility/Get-FileHash.md index be1197153859..4abb81aaa9f7 100644 --- a/reference/6/Microsoft.PowerShell.Utility/Get-FileHash.md +++ b/reference/6/Microsoft.PowerShell.Utility/Get-FileHash.md @@ -127,9 +127,7 @@ The acceptable values for this parameter are: - SHA256 - SHA384 - SHA512 -- MACTripleDES - MD5 -- RIPEMD160 If no value is specified, or if the parameter is omitted, the default value is SHA256. @@ -139,7 +137,7 @@ For security reasons, MD5 and SHA1, which are no longer considered secure, shoul Type: String Parameter Sets: (All) Aliases: -Accepted values: SHA1, SHA256, SHA384, SHA512, MACTripleDES, MD5, RIPEMD160 +Accepted values: SHA1, SHA256, SHA384, SHA512, MD5 Required: False Position: Named