Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
401ee37a
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看板
提交
401ee37a
编写于
20年前
作者:
D
Dr. Stephen Henson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Allow alternative manual sections to be embedded in .pod file comments.
上级
cb26a20c
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
32 addition
and
3 deletion
+32
-3
CHANGES
CHANGES
+11
-0
Makefile.org
Makefile.org
+2
-2
doc/apps/config.pod
doc/apps/config.pod
+2
-0
doc/apps/x509v3_config.pod
doc/apps/x509v3_config.pod
+2
-0
doc/crypto/EVP_BytesToKey.pod
doc/crypto/EVP_BytesToKey.pod
+1
-1
doc/crypto/des_modes.pod
doc/crypto/des_modes.pod
+2
-0
util/extract-section.pl
util/extract-section.pl
+12
-0
未找到文件。
CHANGES
浏览文件 @
401ee37a
...
...
@@ -4,6 +4,17 @@
Changes between 0.9.7e and 0.9.8 [xx XXX xxxx]
*) New utility extract-section.pl. This can be used specify an alternative
section number in a pod file instead of having to treat each file as
a separate case in Makefile. This can be done by adding two lines to the
pod file:
=for comment openssl_section:XXX
The blank line is mandatory.
[Steve Henson]
*) New arguments -certform, -keyform and -pass for s_client and s_server
to allow alternative format key and certificate files and passphrase
sources.
...
...
This diff is collapsed.
Click to expand it.
Makefile.org
浏览文件 @
401ee37a
...
...
@@ -609,7 +609,7 @@ install_docs:
fi
;
\
set
-e
;
for
i
in
doc/apps/
*
.pod
;
do
\
fn
=
`
basename
$$
i .pod
`
;
\
if
[
"
$$
fn"
=
"config"
]
;
then
sec
=
5
;
else
sec
=
1
;
fi
;
\
sec
=
`
$(PERL)
util/extract-section.pl 1 <
$$
i
`
;
\
echo
"installing man
$$
sec/
$$
fn.
$
${sec}$(MANSUFFIX)
"
;
\
(
cd
`
$(PERL)
util/dirname.pl
$$
i
`
;
\
sh
-c
"
$$
pod2man
\
...
...
@@ -626,7 +626,7 @@ install_docs:
done
;
\
set
-e
;
for
i
in
doc/crypto/
*
.pod doc/ssl/
*
.pod
;
do
\
fn
=
`
basename
$$
i .pod
`
;
\
if
[
"
$$
fn"
=
"des_modes"
]
;
then
sec
=
7
;
else
sec
=
3
;
fi
;
\
sec
=
`
$(PERL)
util/extract-section.pl 3 <
$$
i
`
;
\
echo
"installing man
$$
sec/
$$
fn.
$
${sec}$(MANSUFFIX)
"
;
\
(
cd
`
$(PERL)
util/dirname.pl
$$
i
`
;
\
sh
-c
"
$$
pod2man
\
...
...
This diff is collapsed.
Click to expand it.
doc/apps/config.pod
浏览文件 @
401ee37a
=pod
=for comment openssl_manual_section:5
=head1 NAME
config - OpenSSL CONF library configuration files
...
...
This diff is collapsed.
Click to expand it.
doc/apps/x509v3_config.pod
浏览文件 @
401ee37a
=pod
=for comment openssl_manual_section:5
=head1 NAME
x509v3_config - X509 V3 certificate extension configuration format
...
...
This diff is collapsed.
Click to expand it.
doc/crypto/EVP_BytesToKey.pod
浏览文件 @
401ee37a
...
...
@@ -60,7 +60,7 @@ EVP_BytesToKey() returns the size of the derived key in bytes.
=head1 SEE ALSO
L<evp(3)|evp(3)>, L<rand(3)|rand(3)>,
L<EVP_EncryptInit(3)|EVP_EncryptInit(3)>
,
L<EVP_EncryptInit(3)|EVP_EncryptInit(3)>
=head1 HISTORY
...
...
This diff is collapsed.
Click to expand it.
doc/crypto/des_modes.pod
浏览文件 @
401ee37a
=pod
=for comment openssl_manual_section:7
=head1 NAME
Modes of DES - the variants of DES and other crypto algorithms of OpenSSL
...
...
This diff is collapsed.
Click to expand it.
util/extract-section.pl
0 → 100644
浏览文件 @
401ee37a
#!/usr/bin/perl
while
(
<
STDIN
>
)
{
if
(
/=for\s+comment\s+openssl_manual_section:(\S+)/
)
{
print
"
$1
\n
";
exit
0
;
}
}
print
"
$ARGV
[0]
\n
";
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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录
新手
引导
客服
返回
顶部