diff --git a/docs/Rules/AvoidUsingBrokenHashAlgorithms.md b/docs/Rules/AvoidUsingBrokenHashAlgorithms.md index 5f0406934..83b75929c 100644 --- a/docs/Rules/AvoidUsingBrokenHashAlgorithms.md +++ b/docs/Rules/AvoidUsingBrokenHashAlgorithms.md @@ -1,5 +1,5 @@ --- -description: Cmdlet Verbs +description: Avoid using broken hash algorithms ms.custom: PSSA v1.21.0 ms.date: 05/31/2022 ms.topic: reference @@ -15,7 +15,9 @@ Avoid using the broken algorithms MD5 or SHA-1. ## How -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. +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. ## Example 1