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