Public/PasswordPolicies/Get-R1PasswordEncryption.ps1

# .ExternalHelp psRadiantOne-help.xml
function Get-R1PasswordEncryption {
    [CmdletBinding()]
    [OutputType('System.String')]
    param( )

    Begin {

        Assert-R1Session -RequireToken

    }#begin

    Process {

        $URI = Resolve-R1ServiceUrl -Service Settings -Path 'password_policies/password_encryption'

        Invoke-R1RestMethod -Uri $URI -Method GET

    }#process

    End { }#end

}