【转】证书的应用之一 —— TCP&SSL通信实例及协议分析(下)
前面两部分分别讲解了如何在.net程序中使用SSL实现安全通信以及SSL的通信过程,并通过抓包工具具体分析了ssl的握手过程,本文通过一个demo来模拟ssl协议,在TCP之上实现自己的安全通信。
创建证书
为了实现安全的通信,必须使用证书对传输的数据进行加密,有两种方法可以得到证书,一是安装CA服务器,使用CA来发放证书,二是通过makecert.exe工具自己创建。
创建服务器证书:
cmd>makecert.exe -r -pe -n "CN=MySslServer" -sky Exchange -ss
My
创建客户端证书
cmd>makecert.exe -r -pe -n "CN=MySslClient" -sky Exchange -ss
My
关于makecert.exe的更多信息可以操作这里。
建立TCP连接
使用普通的Socket类来建立TCP连接即可。后续的握手,传输数据都是在TCP之上的,在这里,定义每条信息的第一个字节是类型,0x01是整数,0x02是session
key,0x03是应用层数据,0x04是错误信息,未使用。
我们知道TCP通信是stream的,消息没有边界,有可能发送方发送的数据,在接收方两次才能接收完,或者发送方连续发送两次数据,接收方一次就全部接受,这就要求应用层自己对消息的边界进行区分,常用的有3种方法,一是固定长度,所有消息长度一样,不够就填充,显然不够实用而且浪费带宽;二是定义消息边界,每条消息以固定字节流结尾如,如果传输的数据刚好含有这样的字节流,就必须进行转义;三是消息的起始处使用固定字节来描述本消息的长度。本文为方便起见,没有进行消息边界处理,每两次发送有个间隔。
交换证书
在TCP连接建立之后,开始进行握手过程,主要是交换证书,交换session key。
server与client各自将自己的证书发送给对方,证书被export成.cer格式,只含有public
key。证书的作用一是交换session key,二是发送数据时签名。
byte[]
certBytes
=
so.localCert.Export(X509ContentType.Cert);
2
byte[]
sentBytes
=
AddType(certBytes, type);
3
so.workSocket.Send(sentBytes,
0,
sentBytes.Length, SocketFlags.None);
4
Console.WriteLine("Send>>>>>>>>>>>>>>>>>>>>>");
5
PrintCert(so.localCert);
6
。。。。。。
7
byte[]
data
=
RemoveType(so.buffer, read);
8
so.remoteCert
=
new
X509Certificate2(data);
9
Console.WriteLine("Recv<<<<<<<<<<<<<<<<<<<<<<");
10
PrintCert(so.remoteCert);
交换session
key
本demo使用DES对称算法来加密,必须在发送应用层数据之前交换算法的key,使用双方约定固定的IV。
其中一方生成随机的key,用对方的证书加密,调用RSA的Encrypt方法,会使用Public
key,将加密后的数据发送给对方,由于只有对方才有证书的private
key,所以也只有对方才能解密出key,第三方即使中途截获了数据也不能破解出key。
生成session
key
RSACryptoServiceProvider rsa
=
(RSACryptoServiceProvider)so.remoteCert.PublicKey.Key;
2
byte[]
encrypedSessionKey
=
rsa.Encrypt(so.localSessionKey,
false);
3
byte[]
sentBytes
=
AddType(encrypedSessionKey, type);
4
so.workSocket.Send(sentBytes,
0,
sentBytes.Length, SocketFlags.None);
5
Console.WriteLine("Send>>>>>>>>>>>>>>>>>>>>>");
6
PrintSessionKey(so.localSessionKey);
key
byte[]
data
=
RemoveType(so.buffer, read);
2
RSACryptoServiceProvider rsa
=
(RSACryptoServiceProvider)so.localCert.PrivateKey;
3
so.remoteSessionKey
=
rsa.Decrypt(data,
false);
4
Console.WriteLine("Recv<<<<<<<<<<<<<<<<<<<<<<");
5
PrintSessionKey(so.remoteSessionKey);
发送加密和签名数据
发送数据使用DES算法加密,防止被第三方截获;同时对发送的数据签名,让对方确认数据没有被篡改并且确认数据是自己发送的。
数据格式:
0x03 |
密文长度 |
密文 |
签名长度 |
签名 |
密文使用DES算法机密得到。
key,接收方收到数据后,用DES解密出原文,对原文计算hash,然后对收到的签名使用对方的证书的public
key还原,比较与hash是否一致。
—— TCP&SSL通信实例及协议分析(下)" title="【转】证书的应用之一 —— TCP&SSL通信实例及协议分析(下)">加密数据并签名
MemoryStream memoryStream
=
new
MemoryStream();
2
3
//
encrypt
4
DESCryptoServiceProvider des
=
new
DESCryptoServiceProvider();
5
ICryptoTransform cTransform
=
des.CreateEncryptor(so.remoteSessionKey,
new
byte[8]);
6
MemoryStream ms
=
new
MemoryStream();
7
CryptoStream encStream
=
new
CryptoStream(ms, cTransform, CryptoStreamMode.Write);
8
encStream.Write(so.sentData,
0,
so.sentData.Length);
9
encStream.FlushFinalBlock();
10
11
byte[]
temp
=
ms.ToArray();
12
memoryStream.Write(BitConverter.GetBytes(temp.Length),
0,
4);
13
memoryStream.Write(temp,
0,
temp.Length);
14
15
//
hash
16
MD5CryptoServiceProvider md5
=
new
MD5CryptoServiceProvider();
17
byte[]
hash
=
md5.ComputeHash(so.sentData);
18
19
//
sign
20
RSACryptoServiceProvider rsa
=
(RSACryptoServiceProvider) so.localCert.PrivateKey;
21
byte[]
sign
=
rsa.SignHash(hash, CryptoConfig.MapNameToOID("MD5"));
22
23
memoryStream.Write(BitConverter.GetBytes(sign.Length),
0,
4);
24
memoryStream.Write(sign,
0,
sign.Length);
25
26
byte[]
sentBytes
=
AddType(memoryStream.ToArray(), type);
27
so.workSocket.Send(sentBytes,
0,
sentBytes.Length, SocketFlags.None);
28
Console.WriteLine("Send>>>>>>>>>>>>>>>>>>>>>");
29
PrintData(so.sentData);
—— TCP&SSL通信实例及协议分析(下)" title="【转】证书的应用之一 —— TCP&SSL通信实例及协议分析(下)">解密数据并验证
byte[]
data
=
RemoveType(so.buffer, read);
2
3
//
Decrypt
4
DESCryptoServiceProvider des
=
new
DESCryptoServiceProvider();
5
ICryptoTransform cTransform
=
des.CreateDecryptor(so.localSessionKey,
new
byte[8]);
6
int
len
=
BitConverter.ToInt32(data,
0);
7
byte[]
cipherText
=
new
byte[len];
8
Array.Copy(data,
4,
cipherText,
0,
len);
9
MemoryStream ms2
=
new
MemoryStream(cipherText);
10
CryptoStream decStream
=
new
CryptoStream(ms2, cTransform, CryptoStreamMode.Read);
11
12
Byte[] tempBuffer
=
new
Byte[1024];
13
Byte[] outputBytes
=
new
byte[0];
14
int
nRead
=
decStream.Read(tempBuffer,
0,
tempBuffer.Length);
15
int
nLength
=
0;
16
while
(0
!=
nRead)
17
{
18
nLength
=
outputBytes.Length;
19
Array.Resize(ref
outputBytes, nLength
+
nRead);
20
Array.Copy(tempBuffer,
0,
outputBytes, nLength, nRead);
21
nRead
=
decStream.Read(tempBuffer,
0,
tempBuffer.Length);
22
}
23
so.recvData
=
outputBytes;
24
Console.WriteLine("Recv<<<<<<<<<<<<<<<<<<<<<<");
25
PrintData(so.recvData);
26
27
//
hash
28
MD5CryptoServiceProvider md5
=
new
MD5CryptoServiceProvider();
29
byte[]
hash
=
md5.ComputeHash(so.recvData);
30
31
//
verify
32
int
signlen
=
BitConverter.ToInt32(data, len
+
4);
33
byte[]
sign
=
new
byte[signlen];
34
Array.Copy(data,
4+len+4,sign,
0,
signlen);
35
RSACryptoServiceProvider rsa
=
(RSACryptoServiceProvider)so.remoteCert.PublicKey.Key;
36
try
37
{
38
bool
verify
=
rsa.VerifyHash(hash, CryptoConfig.MapNameToOID("MD5"),
sign);
39
if
(verify)
40
{
41
Console.WriteLine("verify
correct!");
42
}
43
else
44
{
45
Console.WriteLine("verify
error!");
46
}
47
}
48
catch
49
{
50
Console.WriteLine("verify
error!");
51
return
PackageType.Error;
52
}
C:\D\BACKUP\Projects\TestProject\MySSLServer\bin\Debug>MySSLServer.exe
2
Recv<<<<<<<<<<<<<<<<<<<<<<
3
============================================
4
cert
5
============================================
6
Subject: CN=MySslClient
7
Issuer: CN=MySslClient
8
Version:
3
9
Valid Date:
7/7/2010
11:25:28
AM
10
Expiry Date:
1/1/2040
7:59:59
AM
11
Thumbprint: D9AE7CF97A254FCA05EB7B704DDC90878FC56B0C
12
Serial Number: 2500552056343D874C0B714A71CB047B
13
Friendly Name: RSA
14
Public Key Format:
30
81
89
02
81
81
00
9f 6f
17
84
0f
03
a0 8c b7
86
45
49
ba 0c c5 ab
37
c9
30
24
32
b5 dc
90
31
e4 d6
15
ea
83
45
1f c8 2d dd 2f
81
3e da
09
44
7f 2a cf bb
18
9a
92
28
d3
79
f0
33
b8
04
f2 1a 1d f8 e0 b6 f9 cc da
36
16
2b e3
16
8b 8d
82
5f 9c
88
6a
79
54
53
4f
08
10
dc b9
53
f1 c8 d4 bd 3d c4
94
71
1d db a2
76
65
8c
37
a3 cd
88
0d a0
72
0e
93
3a
17
64
62
dc
90
cf
19
3f f7
58
59
d6 bd 4e 3f a4
15
30
5b
36
75
2f
02
03
01
00
01
18
Send>>>>>>>>>>>>>>>>>>>>>
19
============================================
20
cert
21
============================================
22
Subject: CN=MySslServer
23
Issuer: CN=MySslServer
24
Version:
3
25
Valid Date:
7/7/2010
11:25:32
AM
26
Expiry Date:
1/1/2040
7:59:59
AM
27
Thumbprint: 5B1CEC828E92A64950284E557477FDD7E2C05300
28
Serial Number: 907E95210C949144FD68342B32FD07
29
Friendly Name: RSA
30
Public Key Format:
30
81
89
02
81
81
00
a4
97
38
0d dd c7 fa 6b b3 e6
23
17
df cd bf
06
c7
40
e1 5e 9a
04
81
02
62
00
b5
31
52
82
c9 6d b0 fc
16
ce e8
72
be ae
31
80
85
44
75
6c 1d 6a 2c
33
55
ee
04
6a fd f8 f4 ff 3a e0
22
28
a7 4f f8 c4 ba
96
32
c7 e6 f0
27
aa
43
09
11
ce eb cb 5e fe
63
84
ef e0
74
11
99
91
5d a0
39
5b
54
e6
74
8d db c8 ce d2 bd
08
53
63
19
3d d6
33
4c
37
99
b1
28
6a
07
2b 0c
70
49
fa df 9e ed 8b 2d e0 ed bf
03
02
03
01
00
01
34
Send>>>>>>>>>>>>>>>>>>>>>
35
============================================
36
session key
37
============================================
38
Session Key:
44
97
AC
07
5E
41
27
0B[8]
39
Recv<<<<<<<<<<<<<<<<<<<<<<
40
============================================
41
session key
42
============================================
43
Session Key: BD
28
62
18
04
90
C9
57[8]
44
Recv<<<<<<<<<<<<<<<<<<<<<<
45
============================================
46
data
47
============================================
48
It's
just a text.
49
verify
correct!
50
Send>>>>>>>>>>>>>>>>>>>>>
51
============================================
52
data
53
============================================
54
Response to client.
C:\D\BACKUP\Projects\TestProject\MySSLClient\bin\Debug>MySSLClient.exe
10.175.13.77
2
Send>>>>>>>>>>>>>>>>>>>>>
3
============================================
4
cert
5
============================================
6
Subject: CN=MySslClient
7
Issuer: CN=MySslClient
8
Version:
3
9
Valid Date:
7/7/2010
11:25:28
AM
10
Expiry Date:
1/1/2040
7:59:59
AM
11
Thumbprint: D9AE7CF97A254FCA05EB7B704DDC90878FC56B0C
12
Serial Number: 2500552056343D874C0B714A71CB047B
13
Friendly Name: RSA
14
Public Key Format:
30
81
89
02
81
81
00
9f 6f
17
84
0f
03
a0 8c b7
86
45
49
ba 0c c5 ab
37
c9
30
24
32
b5 dc
90
31
e4 d6
15
ea
83
45
1f c8 2d dd 2f
81
3e da
09
44
7f 2a cf bb
18
9a
92
28
d3
79
f0
33
b8
04
f2 1a 1d f8 e0 b6 f9 cc da
36
16
2b e3
16
8b 8d
82
5f 9c
88
6a
79
54
53
4f
08
10
dc b9
53
f1 c8 d4 bd 3d c4
94
71
1d db a2
76
65
8c
37
a3 cd
88
0d a0
72
0e
93
3a
17
64
62
dc
90
cf
19
3f f7
58
59
d6 bd 4e 3f a4
15
30
5b
36
75
2f
02
03
01
00
01
18
Recv<<<<<<<<<<<<<<<<<<<<<<
19
============================================
20
cert
21
============================================
22
Subject: CN=MySslServer
23
Issuer: CN=MySslServer
24
Version:
3
25
Valid Date:
7/7/2010
11:25:32
AM
26
Expiry Date:
1/1/2040
7:59:59
AM
27
Thumbprint: 5B1CEC828E92A64950284E557477FDD7E2C05300
28
Serial Number: 907E95210C949144FD68342B32FD07
29
Friendly Name: RSA
30
Public Key Format:
30
81
89
02
81
81
00
a4
97
38
0d dd c7 fa 6b b3 e6
23
17
df cd bf
06
c7
40
e1 5e 9a
04
81
02
62
00
b5
31
52
82
c9 6d b0 fc
16
ce e8
72
be ae
31
80
85
44
75
6c 1d 6a 2c
33
55
ee
04
6a fd f8 f4 ff 3a e0
22
28
a7 4f f8 c4 ba
96
32
c7 e6 f0
27
aa
43
09
11
ce eb cb 5e fe
63
84
ef e0
74
11
99
91
5d a0
39
5b
54
e6
74
8d db c8 ce d2 bd
08
53
63
19
3d d6
33
4c
37
99
b1
28
6a
07
2b 0c
70
49
fa df 9e ed 8b 2d e0 ed bf
03
02
03
01
00
01
34
Send>>>>>>>>>>>>>>>>>>>>>
35
============================================
36
session key
37
============================================
38
Session Key: BD
28
62
18
04
90
C9
57[8]
39
Recv<<<<<<<<<<<<<<<<<<<<<<
40
============================================
41
session key
42
============================================
43
Session Key:
44
97
AC
07
5E
41
27
0B[8]
44
Send>>>>>>>>>>>>>>>>>>>>>
45
============================================
46
data
47
============================================
48
It's
just a text.
49
Recv<<<<<<<<<<<<<<<<<<<<<<
50
============================================
51
data
52
============================================
53
Response to client.
54
verify correct!
【转】证书的应用之一 —— TCP&SSL通信实例及协议分析(下)的更多相关文章
- Linux C++ TCP Socket通信实例
环境:Linux 语言:C++ 通信方式:TCP 下面用TCP协议编写一个简单的服务器.客户端,其中服务器端一直监听本机的6666号端口.如果收到连接请求,将接收请求并接收客户端发来的消息:客户端与服 ...
- ACE网络编程:IPC SAP、ACE_SOCKET和TCP/IP通信实例
socket.TLI.STREAM管道和FIFO为访问局部和全局IPC机制提供广泛的接口.但是,有许多问题与这些不统一的接口有关联.比如类型安全的缺乏和多维度的复杂性会导致成问题的和易错的编程.ACE ...
- TCP、UDP、IP 协议分析
http://rabbit.xttc.edu.cn/rabbit/htm/artical/201091145609.shtml http://bhsc881114.github.io/2015/06 ...
- TCP、UDP、IP协议分析
此篇文章的原创作者是:草根老师博客(程姚根) chengyaogen.blog.chinaunix.net 感谢原作者! 互连网早期的时候,主机间的互连使用的是NCP协议.这种协议本身有很多缺陷,如: ...
- TCP、UDP、IP 协议分析(转)
http://blog.chinaunix.net/uid-26833883-id-3627644.html
- SSL通信-忽略证书认证错误
.NET的SSL通信过程中,使用的证书可能存在各种问题,某种情况下可以忽略证书的错误继续访问.可以用下面的方式跳过服务器证书验证,完成正常通信. 1.设置回调属性ServicePointManager ...
- SSL、TLS协议格式、HTTPS通信过程、RDP SSL通信过程
相关学习资料 http://www.360doc.com/content/10/0602/08/1466362_30787868.shtml http://www.gxu.edu.cn/college ...
- SSL 通信原理及Tomcat SSL 配置
SSL 通信原理及Tomcat SSL 双向配置 目录1 参考资料 .................................................................. ...
- SSL 通信原理及Tomcat SSL 双向配置
SSL 通信原理及Tomcat SSL 双向配置 目录1 参考资料 .................................................................. ...
随机推荐
- 【Spring】Spring MVC文件上传--整合bootstrap-fileinput和jQuery-File-Upload
前言 这里分享两个使用Spring MVC进行文件上传的简单示例, 分别整合bootstrap-fileinput 和 Jquery File Upload , 代码十分简单, 都是入门的示例,因此这 ...
- 【数组】Search a 2D Matrix
题目: Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the f ...
- 自动换行的两种代码(C#)
最近有个需求,需要将C# winform中的listBox中的内容自动换行, 其实在用listBox前,已经用textBox实现了大部分功能,可惜最后还是有个焦点的问题, 就是textBox中的文字会 ...
- 剑指offer62:二插搜索树的第k个节点
题目描述: 给定一颗二叉搜索树,请找出其中的第k大的结点.例如, 5 / \ 3 7 /\ /\ 2 4 6 8 中,按结点数值大小顺序第三个结点的值为4. 中序遍历 /* struct TreeNo ...
- Linux的用户(组),权限,文件精妙的三角关系,和强大的帮助系统
在linux中一切都是文件(文件夹和硬件外设是特殊的文件),如果有可能尽量使用文本文件.文本文件是人和机器能理解的文件,也成为人和机器进行 交流的最好途径.由于所有的配置文件都是文本,所以你只需要一个 ...
- Linux下常用的3种软件安装方式
一:Linux源码安装 1.解压源码包文件 源码包通常会使用tar工具归档然后使用gunzip或bzip2进行压缩,后缀格式会分别为.tar.gz与.tar.bz2,分别的解压方式: ...
- 使用swagger实现web api在线接口文档(转载)
一.前言 通常我们的项目会包含许多对外的接口,这些接口都需要文档化,标准的接口描述文档需要描述接口的地址.参数.返回值.备注等等:像我们以前的做法是写在word/excel,通常是按模块划分,例如一个 ...
- 008.在C#中,显式接口VS隐式接口
原文http://www.codeproject.com/Articles/1000374/Explicit-Interface-VS-Implicit-Interface-in-Csharp (At ...
- 【JavaScript 从零开始】 语言核心部分----可选的分号
Node.js很是火爆,前段待遇好的飞起.... 于是我决定.... 重头开始学习JavaScript有些比较特别的,或者之前我们注意到,再或者容易出错东西我会记录下来. 可选的分号 和其他许多编程语 ...
- (二)this、call和apply
在javascript中,this关键字总让一些初学者迷惑,Function.prototype.call, Function.prototype.apply这两个方法广泛的运用.我们有必要理解这几个 ...