//----------------------------------------------------------------------- // // Copyright (c) Outercurve Foundation. All rights reserved. // //----------------------------------------------------------------------- namespace DotNetOpenAuth.OpenId { using DotNetOpenAuth.Messaging.Bindings; /// /// 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. /// public interface IOpenIdApplicationStore : ICryptoKeyStore, INonceStore { } }