diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-02-07 17:23:13 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-02-07 17:23:13 -0800 |
commit | e40337bd6706ffdfd31a43124b0fd1e095ba7844 (patch) | |
tree | 345d38b2c4e5e9f8ac3b76a93c95c27473f8123d /src/DotNetOpenAuth.OpenId/OpenId/Protocol.cs | |
parent | 4b100caa80eccd539ec428e6838139e3a9c4408f (diff) | |
download | DotNetOpenAuth-e40337bd6706ffdfd31a43124b0fd1e095ba7844.zip DotNetOpenAuth-e40337bd6706ffdfd31a43124b0fd1e095ba7844.tar.gz DotNetOpenAuth-e40337bd6706ffdfd31a43124b0fd1e095ba7844.tar.bz2 |
Removed reference to OpenId.RelyingParty from OpenId.Provider.
This is part of the fix for #71.
Diffstat (limited to 'src/DotNetOpenAuth.OpenId/OpenId/Protocol.cs')
-rw-r--r-- | src/DotNetOpenAuth.OpenId/OpenId/Protocol.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.OpenId/OpenId/Protocol.cs b/src/DotNetOpenAuth.OpenId/OpenId/Protocol.cs index c8324bd..22f5b9c 100644 --- a/src/DotNetOpenAuth.OpenId/OpenId/Protocol.cs +++ b/src/DotNetOpenAuth.OpenId/OpenId/Protocol.cs @@ -44,6 +44,12 @@ namespace DotNetOpenAuth.OpenId { internal const string OpenId2Namespace = "http://specs.openid.net/auth/2.0"; /// <summary> + /// The parameter of the callback parameter we tack onto the return_to URL + /// to store the replay-detection nonce. + /// </summary> + internal const string ReturnToNonceParameter = OpenIdUtilities.CustomParameterPrefix + "request_nonce"; + + /// <summary> /// Scans a list for matches with some element of the OpenID protocol, /// searching from newest to oldest protocol for the first and best match. /// </summary> |