**** Merged from MCS ****
[mono-project.git] / mcs / class / Mono.Security / Mono.Security.X509.Extensions / SubjectKeyIdentifierExtension.cs
blob945111675e3b95e3169422f01a56d1c099bba9a7
1 //
2 // SubjectKeyIdentifierExtension.cs: Handles X.509 SubjectKeyIdentifier extensions.
3 //
4 // Author:
5 // Sebastien Pouliot <sebastien@ximian.com>
6 //
7 // (C) 2004 Novell (http://www.novell.com)
8 //
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.
31 using System;
32 using System.Globalization;
33 using System.Text;
35 using Mono.Security;
36 using Mono.Security.X509;
38 namespace Mono.Security.X509.Extensions {
41 * id-ce-subjectKeyIdentifier OBJECT IDENTIFIER ::= { id-ce 14 }
43 * SubjectKeyIdentifier ::= KeyIdentifier
45 * KeyIdentifier ::= OCTET STRING
48 #if INSIDE_CORLIB
49 internal
50 #else
51 public
52 #endif
53 class SubjectKeyIdentifierExtension : X509Extension {
55 private byte[] ski;
57 public SubjectKeyIdentifierExtension () : base ()
59 extnOid = "2.5.29.14";
62 public SubjectKeyIdentifierExtension (ASN1 asn1) : base (asn1)
66 public SubjectKeyIdentifierExtension (X509Extension extension) : base (extension)
70 protected override void Decode ()
72 ASN1 sequence = new ASN1 (extnValue.Value);
73 if (sequence.Tag != 0x04)
74 throw new ArgumentException ("Invalid SubjectKeyIdentifier extension");
75 ski = sequence.Value;
78 public override string Name {
79 get { return "Subject Key Identifier"; }
82 public byte[] Identifier {
83 get {
84 if (ski == null)
85 return null;
86 return (byte[]) ski.Clone ();
90 public override string ToString ()
92 if (ski == null)
93 return null;
95 StringBuilder sb = new StringBuilder ();
96 int x = 0;
97 while (x < ski.Length) {
98 sb.Append (ski [x].ToString ("X2", CultureInfo.InvariantCulture));
99 if (x % 2 == 1)
100 sb.Append (" ");
101 x++;
103 return sb.ToString ();