Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
be054868
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看板
提交
be054868
编写于
9月 25, 2000
作者:
R
Richard Levitte
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
When creating a .def file, be a bit more selective so disabled
algorithms do not get in...
上级
0acc90e5
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
23 addition
and
3 deletion
+23
-3
util/mkdef.pl
util/mkdef.pl
+23
-3
未找到文件。
util/mkdef.pl
浏览文件 @
be054868
...
...
@@ -119,7 +119,7 @@ foreach (@ARGV, split(/ /, $options))
elsif
(
/^no-rc4$/
)
{
$no_rc4
=
1
;
}
elsif
(
/^no-rc5$/
)
{
$no_rc5
=
1
;
}
elsif
(
/^no-idea$/
)
{
$no_idea
=
1
;
}
elsif
(
/^no-des$/
)
{
$no_des
=
1
;
}
elsif
(
/^no-des$/
)
{
$no_des
=
1
;
$no_mdc2
=
1
;
}
elsif
(
/^no-bf$/
)
{
$no_bf
=
1
;
}
elsif
(
/^no-cast$/
)
{
$no_cast
=
1
;
}
elsif
(
/^no-md2$/
)
{
$no_md2
=
1
;
}
...
...
@@ -704,7 +704,8 @@ EOF
}
else
{
(
my
$n
,
my
$i
)
=
split
/\\/
,
$nums
{
$s
};
my
%pf
=
();
my
@p
=
split
(
/,/
,
(
$i
=~
/^.*?:(.*?):/
,
$
1
));
my
@p
=
split
(
/,/
,
(
$i
=~
/^[^:]*:([^:]*):/
,
$
1
));
my
@a
=
split
(
/,/
,
(
$i
=~
/^[^:]*:[^:]*:[^:]*:([^:]*)/
,
$
1
));
# @p_purged must contain hardware platforms only
my
@p_purged
=
();
foreach
$ptmp
(
@p
)
{
...
...
@@ -726,7 +727,26 @@ EOF
||
(
!
$negatives
&&
(
$rsaref
||
!
grep
(
/^RSAREF$/
,
@p
)))
||
(
$negatives
&&
(
!
$rsaref
||
!
grep
(
/^!RSAREF$/
,
@p
)))))
{
&&
(
!
$rsaref
||
!
grep
(
/^!RSAREF$/
,
@p
))))
&&
(
!
@a
||
(
!
$no_rc2
||
!
grep
(
/^RC2$/
,
@a
)))
&&
(
!
@a
||
(
!
$no_rc4
||
!
grep
(
/^RC4$/
,
@a
)))
&&
(
!
@a
||
(
!
$no_rc5
||
!
grep
(
/^RC5$/
,
@a
)))
&&
(
!
@a
||
(
!
$no_idea
||
!
grep
(
/^IDEA$/
,
@a
)))
&&
(
!
@a
||
(
!
$no_des
||
!
grep
(
/^DES$/
,
@a
)))
&&
(
!
@a
||
(
!
$no_bf
||
!
grep
(
/^BF$/
,
@a
)))
&&
(
!
@a
||
(
!
$no_cast
||
!
grep
(
/^CAST$/
,
@a
)))
&&
(
!
@a
||
(
!
$no_md2
||
!
grep
(
/^MD2$/
,
@a
)))
&&
(
!
@a
||
(
!
$no_md4
||
!
grep
(
/^MD4$/
,
@a
)))
&&
(
!
@a
||
(
!
$no_md5
||
!
grep
(
/^MD5$/
,
@a
)))
&&
(
!
@a
||
(
!
$no_sha
||
!
grep
(
/^SHA$/
,
@a
)))
&&
(
!
@a
||
(
!
$no_ripemd
||
!
grep
(
/^RIPEMD$/
,
@a
)))
&&
(
!
@a
||
(
!
$no_mdc2
||
!
grep
(
/^MDC2$/
,
@a
)))
&&
(
!
@a
||
(
!
$no_rsa
||
!
grep
(
/^RSA$/
,
@a
)))
&&
(
!
@a
||
(
!
$no_dsa
||
!
grep
(
/^DSA$/
,
@a
)))
&&
(
!
@a
||
(
!
$no_dh
||
!
grep
(
/^DH$/
,
@a
)))
&&
(
!
@a
||
(
!
$no_hmac
||
!
grep
(
/^HMAC$/
,
@a
)))
&&
(
!
@a
||
(
!
$no_fp_api
||
!
grep
(
/^FP_API$/
,
@a
)))
)
{
printf
OUT
"
%s%-40s@%d
\n
",(
$W32
)?"":"
_
",
$s
,
$n
;
# } else {
# print STDERR "DEBUG: \"$sym\" (@p):",
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录