Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
afbd0746
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看板
提交
afbd0746
编写于
3月 01, 2000
作者:
B
Bodo Möller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
'rand'/'-rand' documentation.
上级
55f7d65d
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
16 addition
and
8 deletion
+16
-8
apps/dhparam.c
apps/dhparam.c
+1
-1
apps/gendh.c
apps/gendh.c
+1
-1
apps/gendsa.c
apps/gendsa.c
+1
-1
apps/genrsa.c
apps/genrsa.c
+1
-1
apps/pkcs12.c
apps/pkcs12.c
+1
-1
apps/rand.c
apps/rand.c
+1
-1
apps/smime.c
apps/smime.c
+1
-1
doc/apps/openssl.pod
doc/apps/openssl.pod
+5
-1
doc/apps/rand.pod
doc/apps/rand.pod
+4
-0
未找到文件。
apps/dhparam.c
浏览文件 @
afbd0746
...
...
@@ -172,7 +172,7 @@ bad:
BIO_printf
(
bio_err
,
" -2 generate parameters using 2 as the generator value
\n
"
);
BIO_printf
(
bio_err
,
" -5 generate parameters using 5 as the generator value
\n
"
);
BIO_printf
(
bio_err
,
" numbits number of bits in to generate (default 512)
\n
"
);
BIO_printf
(
bio_err
,
" -rand file
:file:...
\n
"
);
BIO_printf
(
bio_err
,
" -rand file
%cfile%c...
\n
"
,
LIST_SEPARATOR_CHAR
,
LIST_SEPARATOR_CHAR
);
BIO_printf
(
bio_err
,
" - load the file (or the files in the directory) into
\n
"
);
BIO_printf
(
bio_err
,
" the random number generator
\n
"
);
BIO_printf
(
bio_err
,
" -noout no output
\n
"
);
...
...
apps/gendh.c
浏览文件 @
afbd0746
...
...
@@ -127,7 +127,7 @@ bad:
BIO_printf
(
bio_err
,
" -2 use 2 as the generator value
\n
"
);
/* BIO_printf(bio_err," -3 use 3 as the generator value\n"); */
BIO_printf
(
bio_err
,
" -5 use 5 as the generator value
\n
"
);
BIO_printf
(
bio_err
,
" -rand file
:file:...
\n
"
);
BIO_printf
(
bio_err
,
" -rand file
%cfile%c...
\n
"
,
LIST_SEPARATOR_CHAR
,
LIST_SEPARATOR_CHAR
);
BIO_printf
(
bio_err
,
" - load the file (or the files in the directory) into
\n
"
);
BIO_printf
(
bio_err
,
" the random number generator
\n
"
);
goto
end
;
...
...
apps/gendsa.c
浏览文件 @
afbd0746
...
...
@@ -145,7 +145,7 @@ bad:
#ifndef NO_IDEA
BIO_printf
(
bio_err
,
" -idea - encrypt the generated key with IDEA in cbc mode
\n
"
);
#endif
BIO_printf
(
bio_err
,
" -rand file
:file:...
\n
"
);
BIO_printf
(
bio_err
,
" -rand file
%cfile%c...
\n
"
,
LIST_SEPARATOR_CHAR
,
LIST_SEPARATOR_CHAR
);
BIO_printf
(
bio_err
,
" - load the file (or the files in the directory) into
\n
"
);
BIO_printf
(
bio_err
,
" the random number generator
\n
"
);
BIO_printf
(
bio_err
,
" dsaparam-file
\n
"
);
...
...
apps/genrsa.c
浏览文件 @
afbd0746
...
...
@@ -154,7 +154,7 @@ bad:
BIO_printf
(
bio_err
,
" -passout arg output file pass phrase source
\n
"
);
BIO_printf
(
bio_err
,
" -f4 use F4 (0x10001) for the E value
\n
"
);
BIO_printf
(
bio_err
,
" -3 use 3 for the E value
\n
"
);
BIO_printf
(
bio_err
,
" -rand file
:file:...
\n
"
);
BIO_printf
(
bio_err
,
" -rand file
%cfile%c...
\n
"
,
LIST_SEPARATOR_CHAR
,
LIST_SEPARATOR_CHAR
);
BIO_printf
(
bio_err
,
" load the file (or the files in the directory) into
\n
"
);
BIO_printf
(
bio_err
,
" the random number generator
\n
"
);
goto
err
;
...
...
apps/pkcs12.c
浏览文件 @
afbd0746
...
...
@@ -265,7 +265,7 @@ int MAIN(int argc, char **argv)
BIO_printf
(
bio_err
,
"-password p set import/export password source
\n
"
);
BIO_printf
(
bio_err
,
"-passin p input file pass phrase source
\n
"
);
BIO_printf
(
bio_err
,
"-passout p output file pass phrase source
\n
"
);
BIO_printf
(
bio_err
,
"-rand file
:file:...
\n
"
);
BIO_printf
(
bio_err
,
"-rand file
%cfile%c...
\n
"
,
LIST_SEPARATOR_CHAR
,
LIST_SEPARATOR_CHAR
);
BIO_printf
(
bio_err
,
" load the file (or the files in the directory) into
\n
"
);
BIO_printf
(
bio_err
,
" the random number generator
\n
"
);
goto
end
;
...
...
apps/rand.c
浏览文件 @
afbd0746
...
...
@@ -84,7 +84,7 @@ int MAIN(int argc, char **argv)
BIO_printf
(
bio_err
,
"Usage: rand [options] num
\n
"
);
BIO_printf
(
bio_err
,
"where options are
\n
"
);
BIO_printf
(
bio_err
,
"-out file - write to file
\n
"
);
BIO_printf
(
bio_err
,
"-rand file
:file:... - seed PRNG from files
\n
"
);
BIO_printf
(
bio_err
,
"-rand file
%cfile%c... - seed PRNG from files
\n
"
,
LIST_SEPARATOR_CHAR
,
LIST_SEPARATOR_CHAR
);
BIO_printf
(
bio_err
,
"-base64 - encode output
\n
"
);
goto
err
;
}
...
...
apps/smime.c
浏览文件 @
afbd0746
...
...
@@ -272,7 +272,7 @@ int MAIN(int argc, char **argv)
BIO_printf
(
bio_err
,
"-text include or delete text MIME headers
\n
"
);
BIO_printf
(
bio_err
,
"-CApath dir trusted certificates directory
\n
"
);
BIO_printf
(
bio_err
,
"-CAfile file trusted certificates file
\n
"
);
BIO_printf
(
bio_err
,
"-rand file
:file:...
\n
"
);
BIO_printf
(
bio_err
,
"-rand file
%cfile%c...
\n
"
,
LIST_SEPARATOR_CHAR
,
LIST_SEPARATOR_CHAR
);
BIO_printf
(
bio_err
,
" load the file (or the files in the directory) into
\n
"
);
BIO_printf
(
bio_err
,
" the random number generator
\n
"
);
BIO_printf
(
bio_err
,
"cert.pem recipient certificate(s) for encryption
\n
"
);
...
...
doc/apps/openssl.pod
浏览文件 @
afbd0746
...
...
@@ -103,6 +103,10 @@ Generation of hashed passwords.
PKCS#7 Data Management.
=item L<B<rand>|rand(1)>
Generate pseudo-random bytes.
=item L<B<req>|req(1)>
X.509 Certificate Signing Request (CSR) Management.
...
...
@@ -285,7 +289,7 @@ L<enc(1)|enc(1)>, L<gendsa(1)|gendsa(1)>,
L<genrsa(1)|genrsa(1)>, L<nseq(1)|nseq(1)>, L<openssl(1)|openssl(1)>,
L<passwd(1)|passwd(1)>,
L<pkcs12(1)|pkcs12(1)>, L<pkcs7(1)|pkcs7(1)>, L<pkcs8(1)|pkcs8(1)>,
L<req(1)|req(1)>, L<rsa(1)|rsa(1)>, L<s_client(1)|s_client(1)>,
L<r
and(1)|rand(1)>, L<r
eq(1)|req(1)>, L<rsa(1)|rsa(1)>, L<s_client(1)|s_client(1)>,
L<s_server(1)|s_server(1)>, L<smime(1)|smime(1)>, L<spkac(1)|spkac(1)>,
L<verify(1)|verify(1)>, L<version(1)|version(1)>, L<x509(1)|x509(1)>,
L<crypto(3)|crypto(3)>, L<ssl(3)|ssl(3)>
...
...
doc/apps/rand.pod
浏览文件 @
afbd0746
...
...
@@ -43,4 +43,8 @@ Perform base64 encoding on the output.
=back
=head1 SEE ALSO
L<RAND_bytes(3)|RAND_bytes(3)>
=cut
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录