Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
1e24b3a0
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
1 年多 前同步成功
通知
9
Star
18
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Openssl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
1e24b3a0
编写于
11月 29, 2006
作者:
B
Bodo Möller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix support for receiving fragmented handshake messages
上级
73b979e6
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
29 addition
and
18 deletion
+29
-18
CHANGES
CHANGES
+25
-5
ssl/d1_pkt.c
ssl/d1_pkt.c
+1
-5
ssl/s23_clnt.c
ssl/s23_clnt.c
+0
-1
ssl/s23_srvr.c
ssl/s23_srvr.c
+0
-1
ssl/s3_pkt.c
ssl/s3_pkt.c
+1
-5
ssl/s3_srvr.c
ssl/s3_srvr.c
+2
-1
未找到文件。
CHANGES
浏览文件 @
1e24b3a0
...
...
@@ -4,11 +4,6 @@
Changes between 0.9.8e and 0.9.9 [xx XXX xxxx]
*) Load error codes if they are not already present instead of using a
static variable. This allows them to be cleanly unloaded and reloaded.
Improve header file function name parsing.
[Steve Henson]
*) Initial incomplete changes to avoid need for function casts in OpenSSL
when OPENSSL_NO_FCAST is set: some compilers (gcc 4.2 and later) reject
their use. Safestack is reimplemented using inline functions: tests show
...
...
@@ -423,9 +418,21 @@
Changes between 0.9.8d and 0.9.8e [XX xxx XXXX]
*) Have SSL/TLS server implementation tolerate "mismatched" record
protocol version while receiving ClientHello even if the
ClientHello is fragmented. (The server can't insist on the
particular protocol version it has chosen before the ServerHello
message has informed the client about his choice.)
[Bodo Moeller]
*) Add RFC 3779 support.
[Rob Austein for ARIN, Ben Laurie]
*) Load error codes if they are not already present instead of using a
static variable. This allows them to be cleanly unloaded and reloaded.
Improve header file function name parsing.
[Steve Henson]
Changes between 0.9.8c and 0.9.8d [28 Sep 2006]
*) Introduce limits to prevent malicious keys being able to
...
...
@@ -1430,6 +1437,19 @@
differing sizes.
[Richard Levitte]
Changes between 0.9.7l and 0.9.7m [xx XXX xxxx]
*) Have SSL/TLS server implementation tolerate "mismatched" record
protocol version while receiving ClientHello even if the
ClientHello is fragmented. (The server can't insist on the
particular protocol version it has chosen before the ServerHello
message has informed the client about his choice.)
[Bodo Moeller]
*) Load error codes if they are not already present instead of using a
static variable. This allows them to be cleanly unloaded and reloaded.
[Steve Henson]
Changes between 0.9.7k and 0.9.7l [28 Sep 2006]
*) Introduce limits to prevent malicious keys being able to
...
...
ssl/d1_pkt.c
浏览文件 @
1e24b3a0
...
...
@@ -573,11 +573,7 @@ again:
n2s
(
p
,
rr
->
length
);
/* Lets check version */
if
(
s
->
first_packet
)
{
s
->
first_packet
=
0
;
}
else
if
(
!
s
->
first_packet
)
{
if
(
version
!=
s
->
version
)
{
...
...
ssl/s23_clnt.c
浏览文件 @
1e24b3a0
...
...
@@ -638,7 +638,6 @@ static int ssl23_get_server_hello(SSL *s)
if
(
!
ssl_get_new_session
(
s
,
0
))
goto
err
;
s
->
first_packet
=
1
;
return
(
SSL_connect
(
s
));
err:
return
(
-
1
);
...
...
ssl/s23_srvr.c
浏览文件 @
1e24b3a0
...
...
@@ -576,7 +576,6 @@ int ssl23_get_client_hello(SSL *s)
s
->
init_num
=
0
;
if
(
buf
!=
buf_space
)
OPENSSL_free
(
buf
);
s
->
first_packet
=
1
;
return
(
SSL_accept
(
s
));
err:
if
(
buf
!=
buf_space
)
OPENSSL_free
(
buf
);
...
...
ssl/s3_pkt.c
浏览文件 @
1e24b3a0
...
...
@@ -307,11 +307,7 @@ fprintf(stderr, "Record type=%d, Length=%d\n", rr->type, rr->length);
#endif
/* Lets check version */
if
(
s
->
first_packet
)
{
s
->
first_packet
=
0
;
}
else
if
(
!
s
->
first_packet
)
{
if
(
version
!=
s
->
version
)
{
...
...
ssl/s3_srvr.c
浏览文件 @
1e24b3a0
...
...
@@ -715,9 +715,9 @@ int ssl3_get_client_hello(SSL *s)
*/
if
(
s
->
state
==
SSL3_ST_SR_CLNT_HELLO_A
)
{
s
->
first_packet
=
1
;
s
->
state
=
SSL3_ST_SR_CLNT_HELLO_B
;
}
s
->
first_packet
=
1
;
n
=
s
->
method
->
ssl_get_message
(
s
,
SSL3_ST_SR_CLNT_HELLO_B
,
SSL3_ST_SR_CLNT_HELLO_C
,
...
...
@@ -726,6 +726,7 @@ int ssl3_get_client_hello(SSL *s)
&
ok
);
if
(
!
ok
)
return
((
int
)
n
);
s
->
first_packet
=
0
;
d
=
p
=
(
unsigned
char
*
)
s
->
init_msg
;
/* use version from inside client hello, not from record header
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录