This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / class / corlib / System.Security.Cryptography / MACTripleDES.cs
1 //
2 // MACTripleDES.cs: Handles MAC with TripleDES
3 //
4 // Author:
5 //      Sebastien Pouliot (spouliot@motus.com)
6 //
7 // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com)
8 //
9
10 //
11 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 using System;
34
35 using Mono.Security.Cryptography;
36
37 namespace System.Security.Cryptography {
38
39         // References:
40         // a.   FIPS PUB 81: DES MODES OF OPERATION 
41         //      MAC: Appendix F (MACDES not MACTripleDES but close enough ;-)
42         //      http://www.itl.nist.gov/fipspubs/fip81.htm
43         
44         // LAMESPEC: MACTripleDES == MAC-CBC using TripleDES (not MAC-CFB).
45         public class MACTripleDES: KeyedHashAlgorithm {
46         
47                 private TripleDES tdes;
48                 private MACAlgorithm mac;
49                 private bool m_disposed;
50         
51                 public MACTripleDES ()
52                 {
53                         Setup ("TripleDES", null);
54                 }
55         
56                 public MACTripleDES (byte[] rgbKey)
57                 {
58                         if (rgbKey == null)
59                                 throw new ArgumentNullException ("rgbKey");
60                         Setup ("TripleDES", rgbKey);
61                 }
62         
63                 public MACTripleDES (string strTripleDES, byte[] rgbKey) 
64                 {
65                         if (rgbKey == null)
66                                 throw new ArgumentNullException ("rgbKey");
67                         if (strTripleDES == null)
68                                 Setup ("TripleDES", rgbKey);
69                         else
70                                 Setup (strTripleDES, rgbKey);
71                 }
72         
73                 private void Setup (string strTripleDES, byte[] rgbKey) 
74                 {
75                         tdes = TripleDES.Create (strTripleDES);
76                         // if rgbKey is null we keep the randomly generated key
77                         if (rgbKey != null) {
78                                 // this way we get the TripleDES key validation (like weak
79                                 // and semi-weak keys)
80                                 tdes.Key = rgbKey;
81                         }
82                         HashSizeValue = tdes.BlockSize;
83                         // we use Key property to get the additional validations 
84                         // (from KeyedHashAlgorithm ancestor)
85                         Key = tdes.Key;
86                         mac = new MACAlgorithm (tdes);
87                         m_disposed = false;
88                 }
89         
90                 ~MACTripleDES () 
91                 {
92                         Dispose (false);
93                 }
94         
95                 protected override void Dispose (bool disposing) 
96                 {
97                         if (!m_disposed) {
98                                 // note: we ALWAYS zeroize keys (disposing or not)
99         
100                                 // clear our copy of the secret key
101                                 if (KeyValue != null)
102                                         Array.Clear (KeyValue, 0, KeyValue.Length);
103                                 // clear the secret key (inside TripleDES)
104                                 if (tdes != null)
105                                         tdes.Clear ();
106         
107                                 if (disposing) {
108                                         // disposed managed stuff
109                                         KeyValue = null;
110                                         tdes = null;
111                                 }
112                                 // ancestor
113                                 base.Dispose (disposing);
114                                 m_disposed = true;
115                         }
116                 }
117         
118                 public override void Initialize () 
119                 {
120                         if (m_disposed)
121                                 throw new ObjectDisposedException ("MACTripleDES");
122                         State = 0;
123                         mac.Initialize (KeyValue);
124                 }
125         
126                 protected override void HashCore (byte[] rgb, int ib, int cb) 
127                 {
128                         if (m_disposed)
129                                 throw new ObjectDisposedException ("MACTripleDES");
130                         if (State == 0) {
131                                 Initialize ();
132                                 State = 1;
133                         }
134                         mac.Core (rgb, ib, cb);
135                 }
136         
137                 protected override byte[] HashFinal () 
138                 {
139                         if (m_disposed)
140                                 throw new ObjectDisposedException ("MACTripleDES");
141                         State = 0;
142                         return mac.Final ();
143                 }
144         }
145 }