blob: b7a0139f473021d83325397f7488868d618ef27c (
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
|
//-----------------------------------------------------------------------
// <copyright file="AssociateUnencryptedResponse.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OpenId.Messages {
using System;
using DotNetOpenAuth.Messaging;
using DotNetOpenAuth.Messaging.Reflection;
/// <summary>
/// The successful unencrypted association response message.
/// </summary>
/// <remarks>
/// Association response messages are described in OpenID 2.0 section 8.2. This type covers section 8.2.2.
/// </remarks>
internal class AssociateUnencryptedResponse : AssociateSuccessfulResponse {
/// <summary>
/// Initializes a new instance of the <see cref="AssociateUnencryptedResponse"/> class.
/// </summary>
/// <param name="responseVersion">The OpenID version of the response message.</param>
/// <param name="originatingRequest">The originating request.</param>
internal AssociateUnencryptedResponse(Version responseVersion, AssociateUnencryptedRequest originatingRequest)
: base(responseVersion, originatingRequest) {
SessionType = Protocol.Args.SessionType.NoEncryption;
}
/// <summary>
/// Gets or sets the MAC key (shared secret) for this association, Base 64 (Josefsson, S., “The Base16, Base32, and Base64 Data Encodings,” .) [RFC3548] encoded.
/// </summary>
[MessagePart("mac_key", IsRequired = true, AllowEmpty = false)]
internal byte[] MacKey { get; set; }
}
}
|