blob: cf0fb9c78bd629acad0a9ac3bcf083addab11306 (
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
|
//-----------------------------------------------------------------------
// <copyright file="OAuth1RsaSha1HttpMessageHandler.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.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading.Tasks;
using Validation;
/// <summary>
/// A delegating HTTP handler that signs outgoing HTTP requests
/// with an RSA-SHA1 signature.
/// </summary>
public class OAuth1RsaSha1HttpMessageHandler : OAuth1HttpMessageHandlerBase {
/// <summary>
/// Gets or sets the certificate used to sign outgoing messages. Used only by Consumers.
/// </summary>
public X509Certificate2 SigningCertificate { get; set; }
/// <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) {
Verify.Operation(this.SigningCertificate != null, Strings.RequiredPropertyNotYetPreset);
var provider = (RSACryptoServiceProvider)this.SigningCertificate.PrivateKey;
byte[] binarySignature = provider.SignData(signedPayload, "SHA1");
return binarySignature;
}
/// <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 "RSA-SHA1"; }
}
}
}
|