Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
cc8709a0
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
cc8709a0
编写于
1月 21, 2000
作者:
D
Dr. Stephen Henson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Docs for sess_id utility.
上级
2c8aeddc
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
156 addition
and
5 deletion
+156
-5
doc/apps/rsa.pod
doc/apps/rsa.pod
+3
-3
doc/apps/s_server.pod
doc/apps/s_server.pod
+2
-2
doc/apps/sess_id.pod
doc/apps/sess_id.pod
+151
-0
未找到文件。
doc/apps/rsa.pod
浏览文件 @
cc8709a0
...
...
@@ -70,9 +70,9 @@ read the input file password from the environment variable B<var>.
=item B<-out filename>
This specifies the output filename to write a key to or standard output
by
is not specified. If any encryption options are set then a pass phrase will b
e
prompted for. The output filename should B<not> be the same as the input
This specifies the output filename to write a key to or standard output
if this
option is not specified. If any encryption options are set then a pass phras
e
will be
prompted for. The output filename should B<not> be the same as the input
filename.
=item B<-passout password>
...
...
doc/apps/s_server.pod
浏览文件 @
cc8709a0
...
...
@@ -55,8 +55,8 @@ the TCP port to listen on for connections. If not specified 4433 is used.
=item B<-context id>
sets the SSL context id. I
f a client certificate is being requested the
n
this option must be set. It can be given any string value
.
sets the SSL context id. I
t can be given any string value. If this optio
n
is not present a default value will be used
.
=item B<-cert certname>
...
...
doc/apps/sess_id.pod
0 → 100644
浏览文件 @
cc8709a0
=pod
=head1 NAME
sess_id - SSL/TLS session handling utility
=head1 SYNOPSIS
B<openssl> B<sess_id>
[B<-inform PEM|DER>]
[B<-outform PEM|DER>]
[B<-in filename>]
[B<-out filename>]
[B<-text>]
[B<-noout>]
[B<-context ID>]
=head1 DESCRIPTION
The B<sess_id> process the encoded version of the SSL session structure
and optionally prints out SSL session details (for example the SSL session
master key) in human readable format. Since this is a diagnostic tool that
needs some knowledge of the SSL protocol to use properly, most users will
not need to use it.
=over 4
=item B<-inform DER|PEM>
This specifies the input format. The B<DER> option uses an ASN1 DER encoded
format containing session details. The precise format can vary from one version
to the next. The B<PEM> form is the default format: it consists of the B<DER>
format base64 encoded with additional header and footer lines.
=item B<-outform DER|PEM>
This specifies the output format, the options have the same meaning as the
B<-inform> option.
=item B<-in filename>
This specifies the input filename to read session information from or standard
input by default.
=item B<-out filename>
This specifies the output filename to write session information toor standard
output if this option is not specified.
=item B<-text>
prints out the various public or private key components in
plain text in addition to the encoded version.
=item B<-cert>
if a certificate is present in the session it will be output using this option,
if the B<-text> option is also present then it will be printed out in text form.
=item B<-noout>
this option prevents output of the encoded version of the session.
=item B<-context ID>
this option can set the session id so the output session information uses the
supplied ID. The ID can be any string of characters. This option wont normally
be used.
=back
=head1 OUTPUT
Typical output:
SSL-Session:
Protocol : TLSv1
Cipher : 0016
Session-ID: 871E62626C554CE95488823752CBD5F3673A3EF3DCE9C67BD916C809914B40ED
Session-ID-ctx: 01000000
Master-Key: A7CEFC571974BE02CAC305269DC59F76EA9F0B180CB6642697A68251F2D2BB57E51DBBB4C7885573192AE9AEE220FACD
Key-Arg : None
Start Time: 948459261
Timeout : 300 (sec)
Verify return code 0 (ok)
Theses are described below in more detail.
=over 4
=item B<Protocol>
this is the protocol in use TLSv1, SSLv3 or SSLv2.
=item B<Cipher>
the cipher used this is the actual raw SSL or TLS cipher code, see the SSL
or TLS specifications for more information.
=item B<Session-ID>
the SSL session ID in hex format.
=item B<Session-ID-ctx>
the session ID context in hex format.
=item B<Master-Key>
this is the SSL session master key.
=item B<Key-Arg>
the key argument, this is only used in SSL v2.
=item B<Start Time>
this is the session start time represented as an integer in standard Unix format.
=item B<Timeout>
the timeout in seconds.
=item B<Verify return code>
this is the return code when an SSL client certificate is verified.
=back
=head1 NOTES
The PEM encoded session format uses the header and footer lines:
-----BEGIN SSL SESSION PARAMETERS-----
-----END SSL SESSION PARAMETERS-----
Since the SSL session output contains the master key it is possible to read the contents
of an encrypted session using this information. Therefore appropriate security precautions
should be taken if the information is being output by a "real" application. This is
however strongly discouraged and should only be used for debugging purposes.
=head1 BUGS
The cipher and start time should be printed out in human readable form.
=head1 SEE ALSO
ciphers(1), s_server(1)
=cut
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录