blob: 11de2573a4a532d98d8273ac37fa28cc9aaa0b58 (
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
56
57
58
59
|
//-----------------------------------------------------------------------
// <copyright file="OAuth1HmacSha1HttpMessageHandler.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OAuth {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
/// <summary>
/// A delegating HTTP handler that signs outgoing HTTP requests
/// with an HMAC-SHA1 signature.
/// </summary>
public class OAuth1HmacSha1HttpMessageHandler : OAuth1HttpMessageHandlerBase {
/// <summary>
/// Initializes a new instance of the <see cref="OAuth1HmacSha1HttpMessageHandler"/> class.
/// </summary>
public OAuth1HmacSha1HttpMessageHandler() {
}
/// <summary>
/// Initializes a new instance of the <see cref="OAuth1HmacSha1HttpMessageHandler"/> class.
/// </summary>
/// <param name="innerHandler">The inner handler which is responsible for processing the HTTP response messages.</param>
public OAuth1HmacSha1HttpMessageHandler(HttpMessageHandler innerHandler)
: base(innerHandler) {
}
/// <summary>
/// Calculates the signature for the specified buffer.
/// </summary>
/// <param name="signedPayload">The payload to calculate the signature for.</param>
/// <returns>
/// The signature.
/// </returns>
protected override byte[] Sign(byte[] signedPayload) {
using (var algorithm = HMACSHA1.Create()) {
algorithm.Key = Encoding.ASCII.GetBytes(this.GetConsumerAndTokenSecretString());
return algorithm.ComputeHash(signedPayload);
}
}
/// <summary>
/// Gets the signature method to include in the oauth_signature_method parameter.
/// </summary>
/// <value>
/// The signature method.
/// </value>
protected override string SignatureMethod {
get { return "HMAC-SHA1"; }
}
}
}
|