**** Merged from MCS ****
[mono-project.git] / mcs / class / Mono.Security / Mono.Security.Protocol.Tls.Handshake.Server / TlsClientFinished.cs
blob6c2faaea8281f73a531623d5a5aa5c6280754451
1 // Transport Security Layer (TLS)
2 // Copyright (c) 2003-2004 Carlos Guzman Alvarez
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining
6 // a copy of this software and associated documentation files (the
7 // "Software"), to deal in the Software without restriction, including
8 // without limitation the rights to use, copy, modify, merge, publish,
9 // distribute, sublicense, and/or sell copies of the Software, and to
10 // permit persons to whom the Software is furnished to do so, subject to
11 // the following conditions:
12 //
13 // The above copyright notice and this permission notice shall be
14 // included in all copies or substantial portions of the Software.
15 //
16 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 using System;
26 using System.Security.Cryptography;
28 using Mono.Security.Cryptography;
30 namespace Mono.Security.Protocol.Tls.Handshake.Server
32 internal class TlsClientFinished : HandshakeMessage
34 #region Constructors
36 public TlsClientFinished(Context context, byte[] buffer)
37 : base(context, HandshakeType.Finished, buffer)
41 #endregion
43 #region Protected Methods
45 protected override void ProcessAsSsl3()
47 bool decryptError = false;
49 // Compute handshake messages hashes
50 HashAlgorithm hash = new SslHandshakeHash(this.Context.MasterSecret);
52 TlsStream data = new TlsStream();
53 data.Write(this.Context.HandshakeMessages.ToArray());
54 data.Write((int)0x434C4E54);
56 hash.TransformFinalBlock(data.ToArray(), 0, (int)data.Length);
58 data.Reset();
60 byte[] clientHash = this.ReadBytes((int)Length);
61 byte[] serverHash = hash.Hash;
63 // Check client prf against server prf
64 if (clientHash.Length != serverHash.Length)
66 decryptError = true;
68 else
70 for (int i = 0; i < clientHash.Length; i++)
72 if (clientHash[i] != serverHash[i])
74 decryptError = true;
75 break;
80 if (decryptError)
82 throw new TlsException(AlertDescription.DecryptError, "Decrypt error.");
86 protected override void ProcessAsTls1()
88 byte[] clientPRF = this.ReadBytes((int)this.Length);
89 HashAlgorithm hash = new MD5SHA1();
90 bool decryptError = false;
92 hash.ComputeHash(
93 this.Context.HandshakeMessages.ToArray(),
95 (int)this.Context.HandshakeMessages.Length);
97 byte[] serverPRF = this.Context.Cipher.PRF(
98 this.Context.MasterSecret, "client finished", hash.Hash, 12);
100 // Check client prf against server prf
101 if (clientPRF.Length != serverPRF.Length)
103 decryptError = true;
105 else
107 for (int i = 0; i < serverPRF.Length; i++)
109 if (clientPRF[i] != serverPRF[i])
111 decryptError = true;
116 if (decryptError)
118 throw new TlsException(AlertDescription.DecryptError, "Decrypt error.");
122 #endregion