diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-05-07 21:21:59 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-05-08 09:13:22 -0700 |
commit | 6b3eae2e62a4d20392bae63ccfa0d6dba1cb9ab7 (patch) | |
tree | 911f25e8389e0ca4056e3bc121d66c84792ef63d | |
parent | ade066736acbd902a7c84b174ac38a1679d52ff0 (diff) | |
download | DotNetOpenAuth-6b3eae2e62a4d20392bae63ccfa0d6dba1cb9ab7.zip DotNetOpenAuth-6b3eae2e62a4d20392bae63ccfa0d6dba1cb9ab7.tar.gz DotNetOpenAuth-6b3eae2e62a4d20392bae63ccfa0d6dba1cb9ab7.tar.bz2 |
Changed the custom RP parameter prefix from "dnoi." to "dnoa."
5 files changed, 7 insertions, 7 deletions
diff --git a/src/DotNetOpenAuth/OpenId/ChannelElements/BackwardCompatibilityBindingElement.cs b/src/DotNetOpenAuth/OpenId/ChannelElements/BackwardCompatibilityBindingElement.cs index f23da51..d42cc03 100644 --- a/src/DotNetOpenAuth/OpenId/ChannelElements/BackwardCompatibilityBindingElement.cs +++ b/src/DotNetOpenAuth/OpenId/ChannelElements/BackwardCompatibilityBindingElement.cs @@ -20,13 +20,13 @@ namespace DotNetOpenAuth.OpenId.ChannelElements { /// The name of the callback parameter that stores the Provider Endpoint URL /// to tack onto the return_to URI. /// </summary> - private const string ProviderEndpointParameterName = "dnoi.op_endpoint"; + private const string ProviderEndpointParameterName = "dnoa.op_endpoint"; /// <summary> /// The name of the callback parameter that stores the Claimed Identifier /// to tack onto the return_to URI. /// </summary> - private const string ClaimedIdentifierParameterName = "dnoi.claimed_id"; + private const string ClaimedIdentifierParameterName = "dnoa.claimed_id"; #region IChannelBindingElement Members diff --git a/src/DotNetOpenAuth/OpenId/ChannelElements/ReturnToNonceBindingElement.cs b/src/DotNetOpenAuth/OpenId/ChannelElements/ReturnToNonceBindingElement.cs index 98a8cc5..6643951 100644 --- a/src/DotNetOpenAuth/OpenId/ChannelElements/ReturnToNonceBindingElement.cs +++ b/src/DotNetOpenAuth/OpenId/ChannelElements/ReturnToNonceBindingElement.cs @@ -44,7 +44,7 @@ namespace DotNetOpenAuth.OpenId.ChannelElements { /// The parameter of the callback parameter we tack onto the return_to URL /// to store the replay-detection nonce. /// </summary> - internal const string NonceParameter = "dnoi.request_nonce"; + internal const string NonceParameter = "dnoa.request_nonce"; /// <summary> /// The length of the generated nonce's random part. diff --git a/src/DotNetOpenAuth/OpenId/ChannelElements/ReturnToSignatureBindingElement.cs b/src/DotNetOpenAuth/OpenId/ChannelElements/ReturnToSignatureBindingElement.cs index fca634a..e2208ba 100644 --- a/src/DotNetOpenAuth/OpenId/ChannelElements/ReturnToSignatureBindingElement.cs +++ b/src/DotNetOpenAuth/OpenId/ChannelElements/ReturnToSignatureBindingElement.cs @@ -33,13 +33,13 @@ namespace DotNetOpenAuth.OpenId.ChannelElements { /// The name of the callback parameter we'll tack onto the return_to value /// to store our signature on the return_to parameter. /// </summary> - private const string ReturnToSignatureParameterName = "dnoi.return_to_sig"; + private const string ReturnToSignatureParameterName = "dnoa.return_to_sig"; /// <summary> /// The name of the callback parameter we'll tack onto the return_to value /// to store the handle of the association we use to sign the return_to parameter. /// </summary> - private const string ReturnToSignatureHandleParameterName = "dnoi.return_to_sig_handle"; + private const string ReturnToSignatureHandleParameterName = "dnoa.return_to_sig_handle"; /// <summary> /// The hashing algorithm used to generate the private signature on the return_to parameter. diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/AuthenticationRequest.cs b/src/DotNetOpenAuth/OpenId/RelyingParty/AuthenticationRequest.cs index 2e22aec..4a3c74f 100644 --- a/src/DotNetOpenAuth/OpenId/RelyingParty/AuthenticationRequest.cs +++ b/src/DotNetOpenAuth/OpenId/RelyingParty/AuthenticationRequest.cs @@ -24,7 +24,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { /// <summary> /// The name of the internal callback parameter to use to store the user-supplied identifier. /// </summary> - internal const string UserSuppliedIdentifierParameterName = "dnoi.userSuppliedIdentifier"; + internal const string UserSuppliedIdentifierParameterName = "dnoa.userSuppliedIdentifier"; /// <summary> /// The relying party that created this request object. diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingParty.cs b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingParty.cs index 4bcaf10..7039de6 100644 --- a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingParty.cs +++ b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingParty.cs @@ -379,7 +379,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { internal static bool IsOpenIdSupportingParameter(string parameterName) { Protocol protocol = Protocol.Default; return parameterName.StartsWith(protocol.openid.Prefix, StringComparison.OrdinalIgnoreCase) - || parameterName.StartsWith("dnoi.", StringComparison.Ordinal); + || parameterName.StartsWith("dnoa.", StringComparison.Ordinal); } /// <summary> |