blob: 6c04a817d53c0edd9dd0c2ab702aae931bd7fc85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//-----------------------------------------------------------------------
// <copyright file="IOpenIdApplicationStore.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. 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 {
}
}
|