Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
7ca1cfba
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看板
提交
7ca1cfba
编写于
2月 02, 2009
作者:
B
Bodo Möller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
-hex option for openssl rand
PR: 1831 Submitted by: Damien Miller
上级
d8e8fc48
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
31 addition
and
3 deletion
+31
-3
CHANGES
CHANGES
+3
-0
apps/rand.c
apps/rand.c
+23
-3
doc/apps/rand.pod
doc/apps/rand.pod
+5
-0
未找到文件。
CHANGES
浏览文件 @
7ca1cfba
...
...
@@ -745,6 +745,9 @@
Changes between 0.9.8j and 0.9.8k [xx XXX xxxx]
*) New -hex option for openssl rand.
[Matthieu Herrb]
*) Print out UTF8String and NumericString when parsing ASN1.
[Steve Henson]
...
...
apps/rand.c
浏览文件 @
7ca1cfba
...
...
@@ -68,7 +68,8 @@
/* -out file - write to file
* -rand file:file - PRNG seed files
* -base64 - encode output
* -base64 - base64 encode output
* -hex - hex encode output
* num - write 'num' bytes
*/
...
...
@@ -84,6 +85,7 @@ int MAIN(int argc, char **argv)
char
*
outfile
=
NULL
;
char
*
inrand
=
NULL
;
int
base64
=
0
;
int
hex
=
0
;
BIO
*
out
=
NULL
;
int
num
=
-
1
;
#ifndef OPENSSL_NO_ENGINE
...
...
@@ -133,6 +135,13 @@ int MAIN(int argc, char **argv)
else
badopt
=
1
;
}
else
if
(
strcmp
(
argv
[
i
],
"-hex"
)
==
0
)
{
if
(
!
hex
)
hex
=
1
;
else
badopt
=
1
;
}
else
if
(
isdigit
((
unsigned
char
)
argv
[
i
][
0
]))
{
if
(
num
<
0
)
...
...
@@ -148,6 +157,9 @@ int MAIN(int argc, char **argv)
badopt
=
1
;
}
if
(
hex
&&
base64
)
badopt
=
1
;
if
(
num
<
0
)
badopt
=
1
;
...
...
@@ -160,7 +172,8 @@ int MAIN(int argc, char **argv)
BIO_printf
(
bio_err
,
"-engine e - use engine e, possibly a hardware device.
\n
"
);
#endif
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
"
);
BIO_printf
(
bio_err
,
"-base64 - base64 encode output
\n
"
);
BIO_printf
(
bio_err
,
"-hex - hex encode output
\n
"
);
goto
err
;
}
...
...
@@ -210,7 +223,14 @@ int MAIN(int argc, char **argv)
r
=
RAND_bytes
(
buf
,
chunk
);
if
(
r
<=
0
)
goto
err
;
BIO_write
(
out
,
buf
,
chunk
);
if
(
!
hex
)
BIO_write
(
out
,
buf
,
chunk
);
else
{
for
(
i
=
0
;
i
<
chunk
;
i
++
)
BIO_printf
(
out
,
"%02x"
,
buf
[
i
]);
BIO_puts
(
out
,
"
\n
"
);
}
num
-=
chunk
;
}
(
void
)
BIO_flush
(
out
);
...
...
doc/apps/rand.pod
浏览文件 @
7ca1cfba
...
...
@@ -10,6 +10,7 @@ B<openssl rand>
[B<-out> I<file>]
[B<-rand> I<file(s)>]
[B<-base64>]
[B<-hex>]
I<num>
=head1 DESCRIPTION
...
...
@@ -41,6 +42,10 @@ all others.
Perform base64 encoding on the output.
=item B<-hex>
Show the output as a hex string.
=back
=head1 SEE ALSO
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录