Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
85d686e7
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
接近 2 年 前同步成功
通知
12
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看板
提交
85d686e7
编写于
2月 14, 2003
作者:
R
Richard Levitte
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Make it possible to disable OCSP, the speed application, and the use of sockets.
PR: 358
上级
2d3de726
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
27 addition
and
0 deletion
+27
-0
apps/ocsp.c
apps/ocsp.c
+11
-0
apps/progs.h
apps/progs.h
+2
-0
apps/speed.c
apps/speed.c
+3
-0
crypto/x509v3/ext_dat.h
crypto/x509v3/ext_dat.h
+6
-0
crypto/x509v3/v3_ocsp.c
crypto/x509v3/v3_ocsp.c
+3
-0
ssl/bio_ssl.c
ssl/bio_ssl.c
+2
-0
未找到文件。
apps/ocsp.c
浏览文件 @
85d686e7
...
...
@@ -55,6 +55,7 @@
* Hudson (tjh@cryptsoft.com).
*
*/
#ifndef OPENSSL_NO_OCSP
#include <stdio.h>
#include <string.h>
...
...
@@ -722,7 +723,12 @@ int MAIN(int argc, char **argv)
}
else
if
(
host
)
{
#ifndef OPENSSL_NO_SOCK
cbio
=
BIO_new_connect
(
host
);
#else
BIO_printf
(
bio_err
,
"Error creating connect BIO - sockets not supported.
\n
"
);
goto
end
;
#endif
if
(
!
cbio
)
{
BIO_printf
(
bio_err
,
"Error creating connect BIO
\n
"
);
...
...
@@ -1139,7 +1145,11 @@ static BIO *init_responder(char *port)
bufbio
=
BIO_new
(
BIO_f_buffer
());
if
(
!
bufbio
)
goto
err
;
#ifndef OPENSSL_NO_SOCK
acbio
=
BIO_new_accept
(
port
);
#else
BIO_printf
(
bio_err
,
"Error setting up accept BIO - sockets not supported.
\n
"
);
#endif
if
(
!
acbio
)
goto
err
;
BIO_set_accept_bios
(
acbio
,
bufbio
);
...
...
@@ -1226,3 +1236,4 @@ static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp)
return
1
;
}
#endif
apps/progs.h
浏览文件 @
85d686e7
...
...
@@ -102,7 +102,9 @@ FUNCTION functions[] = {
#if !defined(OPENSSL_NO_SOCK) && !(defined(OPENSSL_NO_SSL2) && defined(OPENSSL_NO_SSL3))
{
FUNC_TYPE_GENERAL
,
"s_client"
,
s_client_main
},
#endif
#ifndef OPENSSL_NO_SPEED
{
FUNC_TYPE_GENERAL
,
"speed"
,
speed_main
},
#endif
#if !defined(OPENSSL_NO_SOCK) && !(defined(OPENSSL_NO_SSL2) && defined(OPENSSL_NO_SSL3))
{
FUNC_TYPE_GENERAL
,
"s_time"
,
s_time_main
},
#endif
...
...
apps/speed.c
浏览文件 @
85d686e7
...
...
@@ -71,6 +71,8 @@
/* most of this code has been pilfered from my libdes speed.c program */
#ifndef OPENSSL_NO_SPEED
#undef SECONDS
#define SECONDS 3
#define RSA_SECONDS 10
...
...
@@ -2579,3 +2581,4 @@ static int do_multi(int multi)
return
1
;
}
#endif
#endif
crypto/x509v3/ext_dat.h
浏览文件 @
85d686e7
...
...
@@ -90,17 +90,23 @@ static X509V3_EXT_METHOD *standard_exts[] = {
&
v3_crld
,
&
v3_ext_ku
,
&
v3_crl_reason
,
#ifndef OPENSSL_NO_OCSP
&
v3_crl_invdate
,
#endif
&
v3_sxnet
,
&
v3_info
,
#ifndef OPENSSL_NO_OCSP
&
v3_ocsp_nonce
,
&
v3_ocsp_crlid
,
&
v3_ocsp_accresp
,
&
v3_ocsp_nocheck
,
&
v3_ocsp_acutoff
,
&
v3_ocsp_serviceloc
,
#endif
&
v3_sinfo
,
#ifndef OPENSSL_NO_OCSP
&
v3_crl_hold
#endif
};
/* Number of standard extensions */
...
...
crypto/x509v3/v3_ocsp.c
浏览文件 @
85d686e7
...
...
@@ -56,6 +56,8 @@
*
*/
#ifndef OPENSSL_NO_OCSP
#include <stdio.h>
#include "cryptlib.h"
#include <openssl/conf.h>
...
...
@@ -270,3 +272,4 @@ static int i2r_ocsp_serviceloc(X509V3_EXT_METHOD *method, void *in, BIO *bp, int
err:
return
0
;
}
#endif
ssl/bio_ssl.c
浏览文件 @
85d686e7
...
...
@@ -513,6 +513,7 @@ static int ssl_puts(BIO *bp, const char *str)
BIO
*
BIO_new_buffer_ssl_connect
(
SSL_CTX
*
ctx
)
{
#ifndef OPENSSL_NO_SOCK
BIO
*
ret
=
NULL
,
*
buf
=
NULL
,
*
ssl
=
NULL
;
if
((
buf
=
BIO_new
(
BIO_f_buffer
()))
==
NULL
)
...
...
@@ -525,6 +526,7 @@ BIO *BIO_new_buffer_ssl_connect(SSL_CTX *ctx)
err:
if
(
buf
!=
NULL
)
BIO_free
(
buf
);
if
(
ssl
!=
NULL
)
BIO_free
(
ssl
);
#endif
return
(
NULL
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录