blob: b60f2b8f15f9570c50e36cfa120b96b76b1ffe7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//-----------------------------------------------------------------------
// <copyright file="IOpenIdApplicationStore.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OpenId {
using DotNetOpenAuth.Messaging.Bindings;
/// <summary>
/// A hybrid of the store interfaces that an OpenID Provider must implement, and
/// an OpenID Relying Party may implement to operate in stateful (smart) mode.
/// </summary>
public interface IOpenIdApplicationStore : ICryptoKeyStore, INonceStore {
}
}
|