Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
3bc90f23
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看板
提交
3bc90f23
编写于
24年前
作者:
B
Bodo Möller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix typo in -clrext option, but add a compatibility hack because
0.9.5a should not break anything that works in 0.9.5.
上级
98e04f9e
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
13 addition
and
1 deletion
+13
-1
CHANGES
CHANGES
+5
-0
apps/x509.c
apps/x509.c
+8
-1
未找到文件。
CHANGES
浏览文件 @
3bc90f23
...
...
@@ -4,6 +4,11 @@
Changes between 0.9.5 and 0.9.5a [XX XXX 2000]
*) Rename openssl x509 option '-crlext', which was added in 0.9.5,
to '-clrext' (= clear extensions), as intended and documented.
[Bodo Moeller; inconsistency pointed out by Michael Attili
<attili@amaxo.com>]
*) Fix for HMAC. It wasn't zeroing the rest of the block if the key length
was larger than the MD block size.
[Steve Henson, pointed out by Yost William <YostW@tce.com>]
...
...
This diff is collapsed.
Click to expand it.
apps/x509.c
浏览文件 @
3bc90f23
...
...
@@ -126,7 +126,7 @@ static char *x509_usage[]={
" -md2/-md5/-sha1/-mdc2 - digest to use
\n
"
,
" -extfile - configuration file with X509V3 extensions to add
\n
"
,
" -extensions - section from config file with X509V3 extensions to add
\n
"
,
" -c
rl
ext - delete extensions before signing and input certificate
\n
"
,
" -c
lr
ext - delete extensions before signing and input certificate
\n
"
,
NULL
};
...
...
@@ -365,8 +365,15 @@ int MAIN(int argc, char **argv)
aliasout
=
++
num
;
else
if
(
strcmp
(
*
argv
,
"-CAcreateserial"
)
==
0
)
CA_createserial
=
++
num
;
else
if
(
strcmp
(
*
argv
,
"-clrext"
)
==
0
)
clrext
=
1
;
#if 1
/* stay backwards-compatible with 0.9.5; this should go away soon */
else
if
(
strcmp
(
*
argv
,
"-crlext"
)
==
0
)
{
BIO_printf
(
bio_err
,
"use -clrext instead of -crlext
\n
"
);
clrext
=
1
;
}
#endif
else
if
((
md_alg
=
EVP_get_digestbyname
(
*
argv
+
1
)))
{
/* ok */
...
...
This diff is collapsed.
Click to expand it.
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录
反馈
建议
客服
返回
顶部