Examples/Resources/Hash/1-EnableHash.ps1

<#
.EXAMPLE
    This example shows how to enable the MD5 hash.
#>


    Configuration Example
    {
        param(
        )

        Import-DscResource -ModuleName SChannelDsc

        node localhost {
            Hash EnableMD5
            {
                Hash  = "MD5"
                State = "Enabled"
            }
        }
    }