blob: f52ccf84ad20c98fee7ca4bb30ebbc8b5b3f6c70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
//-----------------------------------------------------------------------
// <copyright file="CheckAuthenticationResponse.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OpenId.Messages {
using System;
using System.Collections.Generic;
using System.Diagnostics.Contracts;
using System.Linq;
using System.Text;
using DotNetOpenAuth.Messaging;
using DotNetOpenAuth.OpenId.ChannelElements;
/// <summary>
/// The message sent from the Provider to the Relying Party to confirm/deny
/// the validity of an assertion that was signed by a private Provider secret.
/// </summary>
internal class CheckAuthenticationResponse : DirectResponseBase {
/// <summary>
/// Initializes a new instance of the <see cref="CheckAuthenticationResponse"/> class
/// for use by the Relying Party.
/// </summary>
/// <param name="responseVersion">The OpenID version of the response message.</param>
/// <param name="request">The request that this message is responding to.</param>
internal CheckAuthenticationResponse(Version responseVersion, CheckAuthenticationRequest request)
: base(responseVersion, request) {
}
/// <summary>
/// Gets or sets a value indicating whether the signature of the verification request is valid.
/// </summary>
[MessagePart("is_valid", IsRequired = true)]
internal bool IsValid { get; set; }
/// <summary>
/// Gets or sets the handle the relying party should invalidate if <see cref="IsValid"/> is true.
/// </summary>
/// <value>The "invalidate_handle" value sent in the verification request, if the OP confirms it is invalid.</value>
/// <remarks>
/// <para>If present in a verification response with "is_valid" set to "true",
/// the Relying Party SHOULD remove the corresponding association from
/// its store and SHOULD NOT send further authentication requests with
/// this handle.</para>
/// <para>This two-step process for invalidating associations is necessary
/// to prevent an attacker from invalidating an association at will by
/// adding "invalidate_handle" parameters to an authentication response.</para>
/// <para>For OpenID 1.1, we allow this to be present but empty to put up with poor implementations such as Blogger.</para>
/// </remarks>
[MessagePart("invalidate_handle", IsRequired = false, AllowEmpty = true, MaxVersion = "1.1")]
[MessagePart("invalidate_handle", IsRequired = false, AllowEmpty = false, MinVersion = "2.0")]
internal string InvalidateHandle { get; set; }
}
}
|