Severity Level: Error
Avoid using the broken algorithms MD5 or SHA-1.
Replace broken algorithms with secure alternatives. MD5 and SHA-1 should be replaced with SHA256, SHA384, SHA512, or other safer algorithms when possible, with MD5 and SHA-1 only being utilized by necessity for backwards compatibility.
Get-FileHash foo.txt -Algorithm MD5
Get-FileHash foo.txt -Algorithm SHA256
Get-FileHash foo.txt -Algorithm SHA1
Get-FileHash foo.txt