summaryrefslogtreecommitdiffstats
path: root/projecttemplates/RelyingPartyLogic/Policies.cs
blob: 6bf72d38844667ea53d16ed01ec110a024eaba39 (plain)
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="Andrew Arnott">
//     Copyright (c) Andrew Arnott. 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"),
		};
	}
}