PrivateFunctions/New-JwtId.ps1

function New-JwtId
{
    $guidString = (New-Guid).ToString().Replace("-", "")
    return $guidString
}