This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[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 (spouliot@motus.com)
6 //
7 // (C) 2002 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 using System.Text;
35
36 namespace System.Security.Permissions {
37
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                 int length = s.Length / 2;
54         
55                 byte [] array = new byte [length];
56
57                 for (int i = 0, j = 0; i < s.Length; i += 2, j ++) {
58                         byte left = CharToByte (s [i]);
59                         byte right = CharToByte (s [i+1]);
60                         array [j] = Convert.ToByte (left * 16 + right);
61                 }
62                 
63                 return new StrongNamePublicKeyBlob (array);
64         }
65
66         static byte CharToByte (char c)
67         {
68                 char ch = Char.ToLowerInvariant (c);
69                 
70                 if (Char.IsDigit (ch))
71                         return (byte) (ch - '0');
72                 else 
73                         return (byte) (ch - 'a' + 10);
74         }
75         
76         public override bool Equals (object obj) 
77         {
78                 bool result = (obj is StrongNamePublicKeyBlob);
79                 if (result) {
80                         StrongNamePublicKeyBlob snpkb = (obj as StrongNamePublicKeyBlob);
81                         result = (pubkey.Length == snpkb.pubkey.Length);
82                         if (result) {
83                                 for (int i = 0; i < pubkey.Length; i++) {
84                                         if (pubkey[i] != snpkb.pubkey[i])
85                                                 return false;
86                                 }
87                         }
88                 }
89                 return result;
90         }
91
92         // LAMESPEC: non standard get hash code - (a) Why ??? (b) How ???
93         // It seems to be the first four bytes of the public key data
94         // which seems like non sense as all valid public key will have the same header ?
95         public override int GetHashCode () 
96         {
97                 int hash = 0;
98                 int i = 0;
99                 // a BAD public key can be less than 4 bytes
100                 int n = Math.Min (pubkey.Length, 4);
101                 while (i < n)
102                         hash = (hash << 8) + pubkey [i++];
103                 return hash;
104         }
105
106         public override string ToString () 
107         {
108                 StringBuilder sb = new StringBuilder ();
109                 for (int i=0; i < pubkey.Length; i++)
110                         sb.Append (pubkey[i].ToString ("X2"));
111                 return sb.ToString ();
112         }
113 }
114
115 }