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
|
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
namespace System.IdentityModel
{
using System.IO;
using System.Security.Cryptography;
using System.IdentityModel.Diagnostics;
sealed class HashStream : Stream
{
HashAlgorithm hash;
long length;
bool disposed;
bool hashNeedsReset;
MemoryStream logStream;
/// <summary>
/// Constructor for HashStream. The HashAlgorithm instance is owned by the caller.
/// </summary>
public HashStream(HashAlgorithm hash)
{
if (hash == null)
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("hash");
Reset(hash);
}
public override bool CanRead
{
get { return false; }
}
public override bool CanWrite
{
get { return true; }
}
public override bool CanSeek
{
get { return false; }
}
public HashAlgorithm Hash
{
get { return this.hash; }
}
public override long Length
{
get { return this.length; }
}
public override long Position
{
get { return this.length; }
set
{
// PreSharp Bug: Property get methods should not throw exceptions.
#pragma warning suppress 56503
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotSupportedException());
}
}
public override void Flush()
{
}
public void FlushHash()
{
FlushHash(null);
}
public void FlushHash(MemoryStream preCanonicalBytes)
{
this.hash.TransformFinalBlock(CryptoHelper.EmptyBuffer, 0, 0);
if (DigestTraceRecordHelper.ShouldTraceDigest)
DigestTraceRecordHelper.TraceDigest(this.logStream, this.hash);
}
public byte[] FlushHashAndGetValue()
{
return FlushHashAndGetValue(null);
}
public byte[] FlushHashAndGetValue(MemoryStream preCanonicalBytes)
{
FlushHash(preCanonicalBytes);
return this.hash.Hash;
}
public override int Read(byte[] buffer, int offset, int count)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotSupportedException());
}
public void Reset()
{
if (this.hashNeedsReset)
{
this.hash.Initialize();
this.hashNeedsReset = false;
}
this.length = 0;
if (DigestTraceRecordHelper.ShouldTraceDigest)
this.logStream = new MemoryStream();
}
public void Reset(HashAlgorithm hash)
{
this.hash = hash;
this.hashNeedsReset = false;
this.length = 0;
if (DigestTraceRecordHelper.ShouldTraceDigest)
this.logStream = new MemoryStream();
}
public override void Write(byte[] buffer, int offset, int count)
{
this.hash.TransformBlock(buffer, offset, count, buffer, offset);
this.length += count;
this.hashNeedsReset = true;
if (DigestTraceRecordHelper.ShouldTraceDigest)
this.logStream.Write(buffer, offset, count);
}
public override long Seek(long offset, SeekOrigin origin)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotSupportedException());
}
public override void SetLength(long length)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotSupportedException());
}
#region IDisposable members
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
if (this.disposed)
{
return;
}
if (disposing)
{
//
// Free all of our managed resources
//
if (this.logStream != null)
{
this.logStream.Dispose();
this.logStream = null;
}
}
// Free native resources, if any.
this.disposed = true;
}
#endregion
}
}
|