Merge pull request #496 from nicolas-raoul/unit-test-for-issue2907
[mono.git] / mcs / class / corlib / System.Security.Cryptography / HashAlgorithm.cs
1 //
2 // System.Security.Cryptography.HashAlgorithm.cs
3 //
4 // Authors:
5 //      Matthew S. Ford (Matthew.S.Ford@Rose-Hulman.Edu)
6 //      Sebastien Pouliot (sebastien@ximian.com)
7 //
8 // Copyright 2001 by Matthew S. Ford.
9 // Portions (C) 2002 Motus Technologies Inc. (http://www.motus.com)
10 // Copyright (C) 2004-2006 Novell, Inc (http://www.novell.com)
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31
32 using System.Globalization;
33 using System.IO;
34 using System.Runtime.InteropServices;
35
36 namespace System.Security.Cryptography {
37
38         [ComVisible (true)]
39         public abstract class HashAlgorithm : ICryptoTransform {
40
41                 protected internal byte[] HashValue;
42                 protected int HashSizeValue;
43                 protected int State;
44                 private bool disposed;
45
46                 protected HashAlgorithm () 
47                 {
48                         disposed = false;
49                 }
50
51                 public virtual bool CanTransformMultipleBlocks {
52                         get { return true; }
53                 }
54
55                 public virtual bool CanReuseTransform {
56                         get { return true; }
57                 }
58
59                 public void Clear () 
60                 {
61                         // same as System.IDisposable.Dispose() which is documented
62                         Dispose (true);
63                 }
64
65                 public byte[] ComputeHash (byte[] buffer) 
66                 {
67                         if (buffer == null)
68                                 throw new ArgumentNullException ("buffer");
69
70                         return ComputeHash (buffer, 0, buffer.Length);
71                 }
72
73                 public byte[] ComputeHash (byte[] buffer, int offset, int count) 
74                 {
75                         if (disposed)
76                                 throw new ObjectDisposedException ("HashAlgorithm");
77                         if (buffer == null)
78                                 throw new ArgumentNullException ("buffer");
79                         if (offset < 0)
80                                 throw new ArgumentOutOfRangeException ("offset", "< 0");
81                         if (count < 0)
82                                 throw new ArgumentException ("count", "< 0");
83                         // ordered to avoid possible integer overflow
84                         if (offset > buffer.Length - count) {
85                                 throw new ArgumentException ("offset + count", 
86                                         Locale.GetText ("Overflow"));
87                         }
88
89                         HashCore (buffer, offset, count);
90                         HashValue = HashFinal ();
91                         Initialize ();
92                         
93                         return HashValue;
94                 }
95
96                 public byte[] ComputeHash (Stream inputStream) 
97                 {
98                         // don't read stream unless object is ready to use
99                         if (disposed)
100                                 throw new ObjectDisposedException ("HashAlgorithm");
101
102                         byte[] buffer = new byte [4096];
103                         int len = inputStream.Read (buffer, 0, 4096);
104                         while (len > 0) {
105                                 HashCore (buffer, 0, len);
106                                 len = inputStream.Read (buffer, 0, 4096);
107                         }
108                         HashValue = HashFinal ();
109                         Initialize ();
110                         return HashValue;
111                 }
112         
113                 public static HashAlgorithm Create () 
114                 {
115 #if FULL_AOT_RUNTIME
116                         return new System.Security.Cryptography.SHA1CryptoServiceProvider ();
117 #else
118                         return Create ("System.Security.Cryptography.HashAlgorithm");
119 #endif
120                 }
121         
122                 public static HashAlgorithm Create (string hashName)
123                 {
124                         return (HashAlgorithm) CryptoConfig.CreateFromName (hashName);
125                 }
126         
127                 public virtual byte[] Hash {
128                         get { 
129                                 if (HashValue == null) {
130                                         throw new CryptographicUnexpectedOperationException (
131                                                 Locale.GetText ("No hash value computed."));
132                                 }
133                                 return HashValue; 
134                         }
135                 }
136         
137                 protected abstract void HashCore (byte[] array, int ibStart, int cbSize);
138
139                 protected abstract byte[] HashFinal ();
140
141                 public virtual int HashSize {
142                         get { return HashSizeValue; }
143                 }
144         
145                 public abstract void Initialize ();
146
147                 protected virtual void Dispose (bool disposing)
148                 {
149                         disposed = true;
150                 }
151         
152                 public virtual int InputBlockSize {
153                         get { return 1; }
154                 }
155         
156                 public virtual int OutputBlockSize {
157                         get { return 1; }
158                 }
159
160 #if NET_4_0
161                 public void Dispose ()
162 #else
163                 void IDisposable.Dispose () 
164 #endif
165                 {
166                         Dispose (true);
167                         GC.SuppressFinalize (this);  // Finalization is now unnecessary
168                 }
169
170                 // LAMESPEC: outputBuffer is optional in 2.0 (i.e. can be null).
171                 // However a null outputBuffer would throw a ExecutionEngineException under 1.x
172                 public int TransformBlock (byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset) 
173                 {
174                         if (inputBuffer == null)
175                                 throw new ArgumentNullException ("inputBuffer");
176
177                         if (inputOffset < 0)
178                                 throw new ArgumentOutOfRangeException ("inputOffset", "< 0");
179                         if (inputCount < 0)
180                                 throw new ArgumentException ("inputCount");
181
182                         // ordered to avoid possible integer overflow
183                         if ((inputOffset < 0) || (inputOffset > inputBuffer.Length - inputCount))
184                                 throw new ArgumentException ("inputBuffer");
185
186                         if (outputBuffer != null) {
187                                 if (outputOffset < 0) {
188                                         throw new ArgumentOutOfRangeException ("outputOffset", "< 0");
189                                 }
190                                 // ordered to avoid possible integer overflow
191                                 if (outputOffset > outputBuffer.Length - inputCount) {
192                                         throw new ArgumentException ("outputOffset + inputCount", 
193                                                 Locale.GetText ("Overflow"));
194                                 }
195                         }
196
197                         HashCore (inputBuffer, inputOffset, inputCount);
198
199                         if (outputBuffer != null)
200                                 Buffer.BlockCopy (inputBuffer, inputOffset, outputBuffer, outputOffset, inputCount);
201
202                         return inputCount;
203                 }
204         
205                 public byte[] TransformFinalBlock (byte[] inputBuffer, int inputOffset, int inputCount) 
206                 {
207                         if (inputBuffer == null)
208                                 throw new ArgumentNullException ("inputBuffer");
209                         if (inputCount < 0)
210                                 throw new ArgumentException ("inputCount");
211                         // ordered to avoid possible integer overflow
212                         if (inputOffset > inputBuffer.Length - inputCount) {
213                                 throw new ArgumentException ("inputOffset + inputCount", 
214                                         Locale.GetText ("Overflow"));
215                         }
216
217                         byte[] outputBuffer = new byte [inputCount];
218                         
219                         // note: other exceptions are handled by Buffer.BlockCopy
220                         Buffer.BlockCopy (inputBuffer, inputOffset, outputBuffer, 0, inputCount);
221                         
222                         HashCore (inputBuffer, inputOffset, inputCount);
223                         HashValue = HashFinal ();
224                         Initialize ();
225                         
226                         return outputBuffer;
227                 }
228         }
229 }