Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
2d540402
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看板
提交
2d540402
编写于
6月 13, 2015
作者:
R
Russell Webb
提交者:
Rich Salz
6月 23, 2015
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
RT3856: Fix memory leaks in test code
Reviewed-by:
N
Matt Caswell
<
matt@openssl.org
>
上级
a1c506ae
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
5 addition
and
2 deletion
+5
-2
test/bntest.c
test/bntest.c
+1
-2
test/hmactest.c
test/hmactest.c
+3
-0
test/srptest.c
test/srptest.c
+1
-0
未找到文件。
test/bntest.c
浏览文件 @
2d540402
...
...
@@ -1043,7 +1043,6 @@ int test_mod_exp_mont_consttime(BIO *bp, BN_CTX *ctx)
int
test_mod_exp_mont5
(
BIO
*
bp
,
BN_CTX
*
ctx
)
{
BIGNUM
*
a
,
*
p
,
*
m
,
*
d
,
*
e
;
BN_MONT_CTX
*
mont
;
a
=
BN_new
();
...
...
@@ -1051,7 +1050,6 @@ int test_mod_exp_mont5(BIO *bp, BN_CTX *ctx)
m
=
BN_new
();
d
=
BN_new
();
e
=
BN_new
();
mont
=
BN_MONT_CTX_new
();
BN_bntest_rand
(
m
,
1024
,
0
,
1
);
/* must be odd for montgomery */
...
...
@@ -1100,6 +1098,7 @@ int test_mod_exp_mont5(BIO *bp, BN_CTX *ctx)
fprintf
(
stderr
,
"Modular exponentiation test failed!
\n
"
);
return
0
;
}
BN_MONT_CTX_free
(
mont
);
BN_free
(
a
);
BN_free
(
p
);
BN_free
(
m
);
...
...
test/hmactest.c
浏览文件 @
2d540402
...
...
@@ -188,6 +188,7 @@ int main(int argc, char *argv[])
}
printf
(
"test 4 ok
\n
"
);
test5:
HMAC_CTX_cleanup
(
&
ctx
);
HMAC_CTX_init
(
&
ctx
);
if
(
HMAC_Init_ex
(
&
ctx
,
test
[
4
].
key
,
test
[
4
].
key_len
,
NULL
,
NULL
))
{
printf
(
"Should fail to initialise HMAC with empty MD (test 5)
\n
"
);
...
...
@@ -277,6 +278,7 @@ test5:
printf
(
"test 5 ok
\n
"
);
}
test6:
HMAC_CTX_cleanup
(
&
ctx
);
HMAC_CTX_init
(
&
ctx
);
if
(
!
HMAC_Init_ex
(
&
ctx
,
test
[
7
].
key
,
test
[
7
].
key_len
,
EVP_sha1
(),
NULL
))
{
printf
(
"Failed to initialise HMAC (test 6)
\n
"
);
...
...
@@ -307,6 +309,7 @@ test6:
printf
(
"test 6 ok
\n
"
);
}
end:
HMAC_CTX_cleanup
(
&
ctx
);
EXIT
(
err
);
}
...
...
test/srptest.c
浏览文件 @
2d540402
...
...
@@ -148,6 +148,7 @@ int main(int argc, char **argv)
ERR_remove_thread_state
(
NULL
);
ERR_free_strings
();
CRYPTO_mem_leaks
(
bio_err
);
BIO_free
(
bio_err
);
return
0
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录