2004-02-26 Carlos Guzman Alvarez <carlosga@telefonica.net>
[mono.git] / mcs / class / Mono.Security / Mono.Security.Protocol.Tls / TlsClientSettings.cs
1 /* Transport Security Layer (TLS)
2  * Copyright (c) 2003-2004 Carlos Guzman Alvarez
3  * 
4  * Permission is hereby granted, free of charge, to any person 
5  * obtaining a copy of this software and associated documentation 
6  * files (the "Software"), to deal in the Software without restriction, 
7  * including without limitation the rights to use, copy, modify, merge, 
8  * publish, distribute, sublicense, and/or sell copies of the Software, 
9  * and to permit persons to whom the Software is furnished to do so, 
10  * subject to the following conditions:
11  * 
12  * The above copyright notice and this permission notice shall be included 
13  * in all copies or substantial portions of the Software.
14  * 
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
16  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 
17  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 
18  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 
19  * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
20  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
22  * DEALINGS IN THE SOFTWARE.
23  */
24
25 using System;
26 using System.Text;
27 using System.Security.Cryptography.X509Certificates;
28
29 namespace Mono.Security.Protocol.Tls
30 {
31         internal sealed class TlsClientSettings
32         {
33                 #region Fields
34
35                 private string                                          targetHost;
36                 private X509CertificateCollection       certificates;
37                 private SecurityCompressionType         compressionMethod;
38                 private X509Certificate                         clientCertificate;
39         
40                 #endregion
41
42                 #region Properties
43
44                 public string TargetHost
45                 {
46                         get { return this.targetHost; }
47                         set { this.targetHost = value; }
48                 }
49
50                 public X509CertificateCollection Certificates
51                 {
52                         get { return this.certificates; }
53                         set { this.certificates = value; }
54                 }
55
56                 public SecurityCompressionType CompressionMethod
57                 {
58                         get { return this.compressionMethod; }
59                         set 
60                         { 
61                                 if (value != SecurityCompressionType.None)
62                                 {
63                                         throw new NotSupportedException("Specified compression method is not supported");
64                                 }
65                                 this.compressionMethod = value; 
66                         }
67                 }
68                 
69                 public X509Certificate ClientCertificate
70                 {
71                         get { return this.clientCertificate; }
72                         set { this.clientCertificate = value; }
73                 }
74
75
76                 #endregion
77
78                 #region Constructors
79
80                 public TlsClientSettings()
81                 {
82                         this.compressionMethod  = SecurityCompressionType.None;
83                         this.certificates               = new X509CertificateCollection();
84                         this.targetHost                 = String.Empty;
85                 }
86
87                 #endregion
88         }
89 }