Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
a0754084
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
1 年多 前同步成功
通知
10
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看板
提交
a0754084
编写于
8月 17, 2016
作者:
D
Dr. Stephen Henson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Corrupt signature in place.
Reviewed-by:
N
Richard Levitte
<
levitte@openssl.org
>
上级
79613ea8
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
8 addition
and
18 deletion
+8
-18
apps/apps.c
apps/apps.c
+3
-10
apps/apps.h
apps/apps.h
+1
-1
apps/crl.c
apps/crl.c
+1
-2
apps/ocsp.c
apps/ocsp.c
+2
-3
apps/x509.c
apps/x509.c
+1
-2
未找到文件。
apps/apps.c
浏览文件 @
a0754084
...
...
@@ -2583,15 +2583,8 @@ int has_stdin_waiting(void)
#endif
/* Corrupt a signature by modifying final byte */
int
corrupt_signature
(
ASN1_STRING
*
signature
)
void
corrupt_signature
(
const
ASN1_STRING
*
signature
)
{
unsigned
char
*
s
;
size_t
slen
=
ASN1_STRING_length
(
signature
);
s
=
OPENSSL_memdup
(
ASN1_STRING_get0_data
(
signature
),
slen
);
if
(
s
==
NULL
)
return
0
;
s
[
slen
-
1
]
^=
0x1
;
ASN1_STRING_set0
(
signature
,
s
,
slen
);
return
1
;
unsigned
char
*
s
=
signature
->
data
;
s
[
signature
->
length
-
1
]
^=
0x1
;
}
apps/apps.h
浏览文件 @
a0754084
...
...
@@ -71,7 +71,7 @@ void wait_for_async(SSL *s);
int
has_stdin_waiting
(
void
);
# endif
int
corrupt_signature
(
ASN1_STRING
*
signature
);
void
corrupt_signature
(
const
ASN1_STRING
*
signature
);
/*
* Common verification options.
...
...
apps/crl.c
浏览文件 @
a0754084
...
...
@@ -253,8 +253,7 @@ int crl_main(int argc, char **argv)
ASN1_BIT_STRING
*
sig
;
X509_CRL_get0_signature
(
&
sig
,
NULL
,
x
);
if
(
!
corrupt_signature
(
sig
))
goto
end
;
corrupt_signature
(
sig
);
}
if
(
num
)
{
...
...
apps/ocsp.c
浏览文件 @
a0754084
...
...
@@ -950,9 +950,8 @@ static void make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req,
OCSP_basic_sign
(
bs
,
rcert
,
rkey
,
rmd
,
rother
,
flags
);
if
(
badsig
)
{
ASN1_OCTET_STRING
*
sig
=
OCSP_resp_get0_signature
(
bs
);
if
(
!
corrupt_signature
(
sig
))
goto
end
;
const
ASN1_OCTET_STRING
*
sig
=
OCSP_resp_get0_signature
(
bs
);
corrupt_signature
(
sig
);
}
*
resp
=
OCSP_response_create
(
OCSP_RESPONSE_STATUS_SUCCESSFUL
,
bs
);
...
...
apps/x509.c
浏览文件 @
a0754084
...
...
@@ -606,8 +606,7 @@ int x509_main(int argc, char **argv)
if
(
badsig
)
{
ASN1_BIT_STRING
*
signature
;
X509_get0_signature
(
&
signature
,
NULL
,
x
);
if
(
!
corrupt_signature
(
signature
))
goto
end
;
corrupt_signature
(
signature
);
}
if
(
num
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录