This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / class / corlib / System.Security.Cryptography / DSASignatureFormatter.cs
1 //
2 // System.Security.Cryptography DSASignatureFormatter.cs
3 //
4 // Authors:
5 //      Thomas Neidhart (tome@sbox.tugraz.at)
6 //      Sebastien Pouliot (sebastien@ximian.com)
7 //
8 // Portions (C) 2002 Motus Technologies Inc. (http://www.motus.com)
9 // (C) 2004 Novell (http://www.novell.com)
10 //
11
12 //
13 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
14 //
15 // Permission is hereby granted, free of charge, to any person obtaining
16 // a copy of this software and associated documentation files (the
17 // "Software"), to deal in the Software without restriction, including
18 // without limitation the rights to use, copy, modify, merge, publish,
19 // distribute, sublicense, and/or sell copies of the Software, and to
20 // permit persons to whom the Software is furnished to do so, subject to
21 // the following conditions:
22 // 
23 // The above copyright notice and this permission notice shall be
24 // included in all copies or substantial portions of the Software.
25 // 
26 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
30 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
31 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
32 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33 //
34
35 using System;
36 using System.Globalization;
37
38 namespace System.Security.Cryptography {
39
40         public class DSASignatureFormatter : AsymmetricSignatureFormatter {
41         
42                 private DSA dsa;
43
44                 public DSASignatureFormatter () : base ()
45                 {
46                 }
47
48                 public DSASignatureFormatter (AsymmetricAlgorithm key) : base ()
49                 {
50                         SetKey (key);
51                 }
52
53                 public override byte[] CreateSignature (byte[] rgbHash)
54                 {
55                         if (dsa == null) {
56                                 throw new CryptographicUnexpectedOperationException (
57                                         Locale.GetText ("missing key"));
58                         }
59
60                         return dsa.CreateSignature (rgbHash);
61                 }
62
63                 public override void SetHashAlgorithm (string strName)
64                 {
65                         if (strName == null)
66                                 throw new ArgumentNullException ("strName");
67
68                         try {
69                                 // just to test, we don't need the object
70                                 SHA1 hash = SHA1.Create (strName);
71                         }
72                         catch (InvalidCastException) {
73                                 throw new CryptographicUnexpectedOperationException (
74                                         Locale.GetText ("DSA requires SHA1"));
75                         }
76                 }
77
78                 public override void SetKey (AsymmetricAlgorithm key)
79                 {
80                         if (key != null) {
81                                 // this will throw a InvalidCastException if this isn't
82                                 // a DSA keypair
83                                 dsa = (DSA) key;
84                         }
85                         // here null is accepted!
86                 }
87         }
88 }