New test.
[mono.git] / mcs / class / corlib / System.Security.Permissions / StrongNamePublicKeyBlob.cs
1 //
2 // StrongNamePublicKeyBlob.cs: Strong Name Public Key Blob
3 //
4 // Author:
5 //      Sebastien Pouliot  <sebastien@ximian.com>
6 //
7 // (C) 2002 Motus Technologies Inc. (http://www.motus.com)
8 // Copyright (C) 2004-2005 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 using System.Text;
32
33 namespace System.Security.Permissions {
34
35 #if NET_2_0
36 [ComVisible (true)]
37 #endif
38 [Serializable]
39 public sealed class StrongNamePublicKeyBlob {
40
41         internal byte[] pubkey;
42
43         public StrongNamePublicKeyBlob (byte[] publicKey) 
44         {
45                 if (publicKey == null)
46                         throw new ArgumentNullException ("publicKey");
47                 // Note: No sanity check ?
48                 pubkey = publicKey;
49         }
50
51         internal static StrongNamePublicKeyBlob FromString (string s)
52         {
53                 if ((s == null) || (s.Length == 0))
54                         return null;
55
56                 int length = s.Length / 2;
57         
58                 byte [] array = new byte [length];
59
60                 for (int i = 0, j = 0; i < s.Length; i += 2, j ++) {
61                         byte left = CharToByte (s [i]);
62                         byte right = CharToByte (s [i+1]);
63                         array [j] = Convert.ToByte (left * 16 + right);
64                 }
65                 
66                 return new StrongNamePublicKeyBlob (array);
67         }
68
69         static byte CharToByte (char c)
70         {
71                 char ch = Char.ToLowerInvariant (c);
72                 
73                 if (Char.IsDigit (ch))
74                         return (byte) (ch - '0');
75                 else 
76                         return (byte) (ch - 'a' + 10);
77         }
78         
79         public override bool Equals (object obj) 
80         {
81                 StrongNamePublicKeyBlob snpkb = (obj as StrongNamePublicKeyBlob);
82                 if (snpkb == null)
83                         return false;
84
85                 bool result = (pubkey.Length == snpkb.pubkey.Length);
86                 if (result) {
87                         for (int i = 0; i < pubkey.Length; i++) {
88                                 if (pubkey[i] != snpkb.pubkey[i])
89                                         return false;
90                         }
91                 }
92                 return result;
93         }
94
95         // LAMESPEC: non standard get hash code - (a) Why ??? (b) How ???
96         // It seems to be the first four bytes of the public key data
97         // which seems like non sense as all valid public key will have the same header ?
98         public override int GetHashCode () 
99         {
100                 int hash = 0;
101                 int i = 0;
102                 // a BAD public key can be less than 4 bytes
103                 int n = Math.Min (pubkey.Length, 4);
104                 while (i < n)
105                         hash = (hash << 8) + pubkey [i++];
106                 return hash;
107         }
108
109         public override string ToString () 
110         {
111                 StringBuilder sb = new StringBuilder ();
112                 for (int i=0; i < pubkey.Length; i++)
113                         sb.Append (pubkey[i].ToString ("X2"));
114                 return sb.ToString ();
115         }
116 }
117
118 }