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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
|
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
namespace System.IdentityModel
{
/// <summary>
/// Provides cookie integrity using <see cref="RSA"/> signature.
/// </summary>
/// <remarks>
/// <para>
/// <see cref="RsaSignatureCookieTransform"/> adds an RSA MAC to
/// the cookie data. This provides integrity but not confidentiality. By
/// default the MAC uses SHA-256, but SHA-1 may be requested.
/// </para>
/// <para>
/// Cookies signed with this transform may be read
/// by any machine that shares the same RSA private key (generally
/// associated with an X509 certificate).
/// </para>
/// </remarks>
public class RsaSignatureCookieTransform : CookieTransform
{
RSA _signingKey;
List<RSA> _verificationKeys = new List<RSA>();
string _hashName = "SHA256";
/// <summary>
/// Creates a new instance of <see cref="RsaSignatureCookieTransform"/>.
/// </summary>
/// <param name="key">The provided key will be used as the signing and verification key by default.</param>
/// <exception cref="ArgumentNullException">When the key is null.</exception>
public RsaSignatureCookieTransform(RSA key)
{
if (null == key)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("key");
}
_signingKey = key;
_verificationKeys.Add(_signingKey);
}
/// <summary>
/// Creates a new instance of <see cref="RsaSignatureCookieTransform"/>
/// </summary>
/// <param name="certificate">Certificate whose private key is used to sign and verify.</param>
/// <exception cref="ArgumentNullException">When certificate is null.</exception>
/// <exception cref="ArgumentException">When the certificate has no private key.</exception>
/// <exception cref="ArgumentException">When the certificate's key is not RSA.</exception>
public RsaSignatureCookieTransform(X509Certificate2 certificate)
{
if (null == certificate)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("certificate");
}
_signingKey = X509Util.EnsureAndGetPrivateRSAKey(certificate);
_verificationKeys.Add(_signingKey);
}
/// <summary>
/// Gets or sets the name of the hash algorithm to use.
/// </summary>
/// <remarks>
/// SHA256 is the default algorithm. This may require a minimum platform of Windows Server 2003 and .NET 3.5 SP1.
/// If SHA256 is not supported, set HashName to "SHA1".
/// </remarks>
public string HashName
{
get { return _hashName; }
set
{
using (HashAlgorithm algorithm = CryptoHelper.CreateHashAlgorithm(value))
{
if (algorithm == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument("value", SR.GetString(SR.ID6034, value));
}
_hashName = value;
}
}
}
/// <summary>
/// Creates a new instance of <see cref="RsaSignatureCookieTransform"/>.
/// The instance created by this constructor is not usable until the signing and verification keys are set.
/// </summary>
internal RsaSignatureCookieTransform()
{
}
/// <summary>
/// Gets or sets the RSA key used for signing
/// </summary>
public virtual RSA SigningKey
{
get { return _signingKey; }
set
{
_signingKey = value;
_verificationKeys = new List<RSA>(new RSA[] { _signingKey });
}
}
/// <summary>
/// Gets the collection of keys used for signature verification.
/// By default, this property returns a list containing only the signing key.
/// </summary>
protected virtual ReadOnlyCollection<RSA> VerificationKeys
{
get
{
return _verificationKeys.AsReadOnly();
}
}
// Format:
// SignatureLength : 4-byte big-endian integer
// Signature : Octet stream, length is SignatureLength
// CookieValue : Octet stream, remainder of message
/// <summary>
/// Verifies the signature. All keys in the collection VerificationKeys will be attempted.
/// </summary>
/// <param name="encoded">Data previously returned from <see cref="Encode"/></param>
/// <returns>The originally signed data.</returns>
/// <exception cref="ArgumentNullException">The argument 'encoded' is null.</exception>
/// <exception cref="ArgumentException">The argument 'encoded' contains zero bytes.</exception>
/// <exception cref="FormatException">The data is in the wrong format.</exception>
/// <exception cref="CryptographicException">The signature is invalid.</exception>
/// <exception cref="NotSupportedException">The platform does not support the requested algorithm.</exception>
/// <exception cref="InvalidOperationException">There are no verification keys.</exception>
public override byte[] Decode(byte[] encoded)
{
if (null == encoded)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("encoded");
}
if (0 == encoded.Length)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument("encoded", SR.GetString(SR.ID6045));
}
ReadOnlyCollection<RSA> verificationKeys = VerificationKeys;
if (0 == verificationKeys.Count)
{
throw DiagnosticUtility.ThrowHelperInvalidOperation(SR.GetString(SR.ID6036));
}
// Decode the message ...
int currentIndex = 0;
// SignatureLength : 4-byte big-endian integer
if (encoded.Length < sizeof(Int32))
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new FormatException(SR.GetString(SR.ID1012)));
}
Int32 signatureLength = BitConverter.ToInt32(encoded, currentIndex);
if (signatureLength < 0)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new FormatException(SR.GetString(SR.ID1005, signatureLength)));
}
if (signatureLength >= encoded.Length - sizeof(Int32))
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new FormatException(SR.GetString(SR.ID1013)));
}
currentIndex += sizeof(Int32);
// Signature : Octet stream, length is SignatureLength
byte[] signature = new byte[signatureLength];
Array.Copy(encoded, currentIndex, signature, 0, signature.Length);
currentIndex += signature.Length;
// CookieValue : Octet stream, remainder of message
byte[] cookieValue = new byte[encoded.Length - currentIndex];
Array.Copy(encoded, currentIndex, cookieValue, 0, cookieValue.Length);
bool verified = false;
try
{
// Verify the signature
using (HashAlgorithm hash = CryptoHelper.CreateHashAlgorithm(HashName))
{
hash.ComputeHash(cookieValue);
foreach (RSA rsa in verificationKeys)
{
AsymmetricSignatureDeformatter verifier = GetSignatureDeformatter(rsa);
if ((isSha256() && CryptoHelper.VerifySignatureForSha256(verifier, hash, signature)) ||
verifier.VerifySignature(hash, signature))
{
verified = true;
break;
}
}
}
}
// Not all algorithms are supported on all OS
catch (CryptographicException e)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotSupportedException(SR.GetString(SR.ID6035, HashName, verificationKeys[0].GetType().FullName), e));
}
if (!verified)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CryptographicException(SR.GetString(SR.ID1014)));
}
return cookieValue;
}
/// <summary>
/// Signs data.
/// </summary>
/// <param name="value">Data to be signed.</param>
/// <returns>Signed data.</returns>
/// <exception cref="ArgumentNullException">The argument 'value' is null.</exception>
/// <exception cref="ArgumentException">The argument 'value' contains zero bytes.</exception>
/// <exception cref="InvalidOperationException">The SigningKey is null.</exception>
/// <exception cref="NotSupportedException">The platform does not support the requested algorithm.</exception>
/// <exception cref="InvalidOperationException">The SigningKey is null, is not an RSACryptoServiceProvider, or does not contain a private key.</exception>
/// <remarks>The SigningKey must include the private key in order to sign.</remarks>
public override byte[] Encode(byte[] value)
{
if (null == value)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("value");
}
if (0 == value.Length)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument("value", SR.GetString(SR.ID6044));
}
RSA signingKey = SigningKey;
if (null == signingKey)
{
throw DiagnosticUtility.ThrowHelperInvalidOperation(SR.GetString(SR.ID6042));
}
RSACryptoServiceProvider rsaCryptoServiceProvider = signingKey as RSACryptoServiceProvider;
if (rsaCryptoServiceProvider == null && LocalAppContextSwitches.DisableCngCertificates)
{
throw DiagnosticUtility.ThrowHelperInvalidOperation(SR.GetString(SR.ID6042));
}
if (rsaCryptoServiceProvider != null && rsaCryptoServiceProvider.PublicOnly)
{
throw DiagnosticUtility.ThrowHelperInvalidOperation(SR.GetString(SR.ID6046));
}
// Compute the signature
byte[] signature;
using (HashAlgorithm hash = CryptoHelper.CreateHashAlgorithm(HashName))
{
try
{
hash.ComputeHash(value);
AsymmetricSignatureFormatter signer = GetSignatureFormatter(signingKey);
if (isSha256())
{
signature = CryptoHelper.CreateSignatureForSha256(signer, hash);
}
else
{
signature = signer.CreateSignature(hash);
}
}
// Not all algorithms are supported on all OS
catch (CryptographicException e)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotSupportedException(SR.GetString(SR.ID6035, HashName, signingKey.GetType().FullName), e));
}
}
// Get the signature length as a big-endian integer
byte[] signatureLength = BitConverter.GetBytes(signature.Length);
// Assemble the message ...
int currentIndex = 0;
byte[] message = new byte[signatureLength.Length + signature.Length + value.Length];
// SignatureLength : 4-byte big endian integer
Array.Copy(signatureLength, 0, message, currentIndex, signatureLength.Length);
currentIndex += signatureLength.Length;
// Signature : Octet stream, length is SignatureLength
Array.Copy(signature, 0, message, currentIndex, signature.Length);
currentIndex += signature.Length;
// CookieValue : Octet stream, remainder of message
Array.Copy(value, 0, message, currentIndex, value.Length);
return message;
}
/// <summary>
/// The default RSACryptoServiceProvider does not support signatures for SHA256. If this is desired, it's necessary to construct a new one.
/// </summary>
AsymmetricSignatureFormatter GetSignatureFormatter(RSA rsa)
{
RSACryptoServiceProvider rsaProvider = rsa as RSACryptoServiceProvider;
if (isSha256() && null != rsaProvider)
{
return CryptoHelper.GetSignatureFormatterForSha256(rsaProvider);
}
else
{
//
// If it's SHA-1 or the RSA is not an RsaCSP, just create a formatter using the original RSA.
//
return new RSAPKCS1SignatureFormatter(rsa);
}
}
AsymmetricSignatureDeformatter GetSignatureDeformatter(RSA rsa)
{
RSACryptoServiceProvider rsaProvider = rsa as RSACryptoServiceProvider;
if (isSha256() && null != rsaProvider)
{
return CryptoHelper.GetSignatureDeFormatterForSha256(rsaProvider);
}
else
{
//
// If it's SHA-1 or the RSA is not an RsaCSP, just create a deformatter using the original RSA.
//
return new RSAPKCS1SignatureDeformatter(rsa);
}
}
/// <summary>
/// Returns true if the hash algorithm is set to SHA256, false otherwise.
/// </summary>
/// <returns></returns>
bool isSha256()
{
return (StringComparer.OrdinalIgnoreCase.Equals(HashName, "SHA256")
|| StringComparer.OrdinalIgnoreCase.Equals(HashName, "SHA-256")
|| StringComparer.OrdinalIgnoreCase.Equals(HashName, "System.Security.Cryptography.SHA256"));
}
}
}
|