//----------------------------------------------------------------------- // // Copyright (c) Outercurve Foundation. All rights reserved. // //----------------------------------------------------------------------- namespace 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 ICryptoKeyAndNonceStore : ICryptoKeyStore, INonceStore { } }