Merge pull request #757 from mlintner/master
[mono.git] / mcs / class / Mono.Security / Mono.Security.Cryptography / CryptoTools.cs
1 //
2 // Mono.Security.Cryptography.CryptoTools
3 //      Shared class for common cryptographic functionalities
4 //
5 // Authors:
6 //      Sebastien Pouliot <sebastien@ximian.com>
7 //
8 // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com)
9 // Copyright (C) 2004, 2008 Novell, Inc (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32 using System.Security.Cryptography;
33
34 namespace Mono.Security.Cryptography {
35
36 #if INSIDE_CORLIB
37         internal
38 #else
39         public
40 #endif
41         sealed class KeyBuilder {
42         
43                 static private RandomNumberGenerator rng;
44
45                 private KeyBuilder ()
46                 {
47                 }
48
49                 static RandomNumberGenerator Rng {
50                         get {
51                                 if (rng == null)
52                                         rng = RandomNumberGenerator.Create ();
53                                 return rng;
54                         }
55                 }
56         
57                 static public byte[] Key (int size) 
58                 {
59                         byte[] key = new byte [size];
60                         Rng.GetBytes (key);
61                         return key;
62                 }
63         
64                 static public byte[] IV (int size) 
65                 {
66                         byte[] iv = new byte [size];
67                         Rng.GetBytes (iv);
68                         return iv;
69                 }
70         }
71         
72         // Process an array as a sequence of blocks
73 #if INSIDE_CORLIB
74         internal
75 #else
76         public
77 #endif
78         class BlockProcessor {
79                 private ICryptoTransform transform;
80                 private byte[] block;
81                 private int blockSize;  // in bytes (not in bits)
82                 private int blockCount;
83         
84                 public BlockProcessor (ICryptoTransform transform) 
85                         : this (transform, transform.InputBlockSize) {} 
86         
87                 // some Transforms (like HashAlgorithm descendant) return 1 for
88                 // block size (which isn't their real internal block size)
89                 public BlockProcessor (ICryptoTransform transform, int blockSize)
90                 {
91                         this.transform = transform;
92                         this.blockSize = blockSize;
93                         block = new byte [blockSize];
94                 }
95         
96                 ~BlockProcessor () 
97                 {
98                         // zeroize our block (so we don't retain any information)
99                         Array.Clear (block, 0, blockSize);
100                 }
101         
102                 public void Initialize ()
103                 {
104                         Array.Clear (block, 0, blockSize);
105                         blockCount = 0;
106                 }
107         
108                 public void Core (byte[] rgb) 
109                 {
110                         Core (rgb, 0, rgb.Length);
111                 }
112         
113                 public void Core (byte[] rgb, int ib, int cb) 
114                 {
115                         // 1. fill the rest of the "block"
116                         int n = System.Math.Min (blockSize - blockCount, cb);
117                         Buffer.BlockCopy (rgb, ib, block, blockCount, n); 
118                         blockCount += n;
119         
120                         // 2. if block is full then transform it
121                         if (blockCount == blockSize) {
122                                 transform.TransformBlock (block, 0, blockSize, block, 0);
123         
124                                 // 3. transform any other full block in specified buffer
125                                 int b = (int) ((cb - n) / blockSize);
126                                 for (int i=0; i < b; i++) {
127                                         transform.TransformBlock (rgb, n + ib, blockSize, block, 0);
128                                         n += blockSize;
129                                 }
130         
131                                 // 4. if data is still present fill the "block" with the remainder
132                                 blockCount = cb - n;
133                                 if (blockCount > 0)
134                                         Buffer.BlockCopy (rgb, n + ib, block, 0, blockCount);
135                         }
136                 }
137         
138                 public byte[] Final () 
139                 {
140                         return transform.TransformFinalBlock (block, 0, blockCount);
141                 }
142         }
143 }