forked from DotNetOpenAuth/DotNetOpenAuth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPolicies.cs
23 lines (21 loc) · 811 Bytes
/
Policies.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//-----------------------------------------------------------------------
// <copyright file="Policies.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace RelyingPartyLogic {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
public class Policies {
/// <summary>
/// The set of OP Endpoints that we trust pre-verify email addresses before sending them
/// with positive assertions.
/// </summary>
public static readonly Uri[] ProviderEndpointsProvidingTrustedEmails = new Uri[] {
new Uri("https://www.google.com/accounts/o8/ud"),
new Uri("https://open.login.yahooapis.com/openid/op/auth"),
};
}
}