Fill and parse message replace by specific process method for each protocol supported
[mono.git] / mcs / class / Mono.Security / Mono.Security.Protocol.Tls.Handshake.Client / TlsServerHello.cs
1 /* Transport Security Layer (TLS)
2  * Copyright (c) 2003 Carlos Guzmán Álvarez
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
27 namespace Mono.Security.Protocol.Tls.Handshake.Client
28 {
29         internal class TlsServerHello : TlsHandshakeMessage
30         {
31                 #region FIELDS
32
33                 private TlsProtocol                             protocol;
34                 private TlsCompressionMethod    compressionMethod;
35                 private byte[]                                  random;
36                 private byte[]                                  sessionId;
37                 private TlsCipherSuite                  cipherSuite;
38                 
39                 #endregion
40
41                 #region CONSTRUCTORS
42
43                 public TlsServerHello(TlsSession session, byte[] buffer) 
44                         : base(session, TlsHandshakeType.ServerHello, buffer)
45                 {
46                 }
47
48                 #endregion
49
50                 #region METHODS
51
52                 public override void UpdateSession()
53                 {
54                         base.UpdateSession();
55
56                         Session.SetSessionId(this.sessionId);
57                         Session.Context.ServerRandom            = this.random;
58                         Session.Context.Cipher                          = this.cipherSuite;
59                         Session.Context.CompressionMethod       = this.compressionMethod;
60                         Session.Context.Cipher.Context          = this.Session.Context;
61                 }
62
63                 #endregion
64
65                 #region PROTECTED_METHODS
66
67                 protected override void ProcessAsSsl3()
68                 {
69                         throw new NotSupportedException();
70                 }
71
72                 protected override void ProcessAsTls1()
73                 {
74                         // Read protocol version
75                         this.protocol   = (TlsProtocol)this.ReadInt16();
76                         
77                         // Read random  - Unix time + Random bytes
78                         this.random             = this.ReadBytes(32);
79                         
80                         // Read Session id
81                         int length = (int)ReadByte();
82                         if (length > 0)
83                         {
84                                 this.sessionId = this.ReadBytes(length);
85                         }
86
87                         // Read cipher suite
88                         short cipherCode = this.ReadInt16();
89                         if (this.Session.SupportedCiphers.IndexOf(cipherCode) == -1)
90                         {
91                                 // The server has sent an invalid ciphersuite
92                                 throw new TlsException("Invalid cipher suite received from server");
93                         }
94                         this.cipherSuite = this.Session.SupportedCiphers[cipherCode];
95                         
96                         // Read compression methods ( always 0 )
97                         this.compressionMethod = (TlsCompressionMethod)this.ReadByte();
98                 }
99
100                 #endregion
101         }
102 }