[tests] Separate MONO_PATH directories by PLATFORM_PATH_SEPARATOR
[mono.git] / mcs / class / System.IdentityModel / System.IdentityModel.Tokens / X509IssuerSerialKeyIdentifierClause.cs
1 //
2 // X509IssuerSerialKeyIdentifierClause.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2005-2006 Novell, Inc.  http://www.novell.com
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28 using System;
29 using System.Collections.Generic;
30 using System.Security.Cryptography.X509Certificates;
31 #if !TARGET_DOTNET
32 using Mono.Math;
33 #endif
34
35 namespace System.IdentityModel.Tokens
36 {
37         public class X509IssuerSerialKeyIdentifierClause : SecurityKeyIdentifierClause
38         {
39                 static byte [] FromBinHex (string s)
40                 {
41                         byte [] bytes = new byte [s.Length / 2];
42                         for (int i = 0; i < bytes.Length; i++)
43                                 bytes [i] = (byte) (DecodeHex (s [i * 2]) * 16 + DecodeHex (s [i * 2 + 1]));
44                         return bytes;
45                 }
46
47                 static byte DecodeHex (char c)
48                 {
49                         return  (byte) (c <= '9' ? c - '0' : c <= 'F' ? c - 'A' + 10 : c - 'a' + 10);
50                 }
51
52                 static string ToDecimalString (string hexString)
53                 {
54 #if TARGET_DOTNET
55                         throw new NotImplementedException ();
56 #else                   
57             // http://tools.ietf.org/html/rfc5280#section-4.1.2.2
58             // We SHOULD support negative numbers
59             var bytes = FromBinHex (hexString);
60                         
61             var negative = bytes.Length > 0 && bytes [0] >= 0x80;
62             if (negative) {
63                 for (int i = 0; i < bytes.Length; i++)
64                     bytes [i] = (byte) ~ bytes [i];
65             }
66                 
67                         var big = new BigInteger (bytes);
68                         if (negative) { 
69                                 big = big + 1;
70                                 return "-" + big.ToString ();
71                         } else 
72                                 return big.ToString ();
73 #endif
74         }
75
76                 public X509IssuerSerialKeyIdentifierClause (X509Certificate2 certificate)
77                         : base (null)
78                 {
79                         if (certificate == null)
80                                 throw new ArgumentNullException ("certificate");
81                         name = certificate.IssuerName.Name;
82                         serial = ToDecimalString (certificate.SerialNumber);
83                 }
84
85                 public X509IssuerSerialKeyIdentifierClause (string issuerName, string issuerSerialNumber)
86                         : base (null)
87                 {
88                         name = issuerName;
89                         serial = issuerSerialNumber;
90                 }
91
92                 string name, serial;
93
94                 public string IssuerName {
95                         get { return name; }
96                 }
97
98                 public string IssuerSerialNumber {
99                         get { return serial; }
100                 }
101
102                 public override bool Matches (SecurityKeyIdentifierClause clause)
103                 {
104                         X509IssuerSerialKeyIdentifierClause other =
105                                 clause as X509IssuerSerialKeyIdentifierClause;
106                         return other != null && Matches (other.name, other.serial);
107                 }
108
109                 public bool Matches (X509Certificate2 certificate)
110                 {
111                         return name == certificate.IssuerName.Name &&
112                                serial == ToDecimalString (certificate.SerialNumber);
113                 }
114
115                 public bool Matches (string issuerName, string issuerSerialNumber)
116                 {
117                         return name == issuerName && serial == issuerSerialNumber;
118                 }
119
120                 [MonoTODO]
121                 public override string ToString ()
122                 {
123                         return base.ToString ();
124                 }
125         }
126 }