Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
49e3c9d8
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看板
提交
49e3c9d8
编写于
11月 03, 2005
作者:
A
Andy Polyakov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Mask libcrypto references to stat with OPENSSL_NO_POSIX_IO.
上级
1715e488
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
15 addition
and
9 deletion
+15
-9
crypto/rand/randfile.c
crypto/rand/randfile.c
+9
-5
crypto/x509/by_dir.c
crypto/x509/by_dir.c
+6
-4
未找到文件。
crypto/rand/randfile.c
浏览文件 @
49e3c9d8
...
...
@@ -75,9 +75,7 @@
#ifndef NO_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef MAC_OS_pre_X
# include <stat.h>
#else
#ifndef OPENSSL_NO_POSIX_IO
# include <sys/stat.h>
#endif
...
...
@@ -96,21 +94,25 @@ int RAND_load_file(const char *file, long bytes)
* if bytes == -1, read complete file. */
MS_STATIC
unsigned
char
buf
[
BUFSIZE
];
#ifndef OPENSSL_NO_POSIX_IO
struct
stat
sb
;
#endif
int
i
,
ret
=
0
,
n
;
FILE
*
in
;
if
(
file
==
NULL
)
return
(
0
);
#ifndef OPENSSL_NO_POSIX_IO
i
=
stat
(
file
,
&
sb
);
/* If the state fails, put some crap in anyway */
RAND_add
(
&
sb
,
sizeof
(
sb
),
0
.
0
);
if
(
i
<
0
)
return
(
0
);
#endif
if
(
bytes
==
0
)
return
(
ret
);
in
=
fopen
(
file
,
"rb"
);
if
(
in
==
NULL
)
goto
err
;
#if defined(S_IFBLK) && defined(S_IFCHR)
#if defined(S_IFBLK) && defined(S_IFCHR)
&& !defined(OPNESSL_NO_POSIX_IO)
if
(
sb
.
st_mode
&
(
S_IFBLK
|
S_IFCHR
))
{
/* this file is a device. we don't want read an infinite number
* of bytes from a random device, nor do we want to use buffered
...
...
@@ -149,6 +151,7 @@ int RAND_write_file(const char *file)
int
i
,
ret
=
0
,
rand_err
=
0
;
FILE
*
out
=
NULL
;
int
n
;
#ifndef OPENSSL_NO_POSIX_IO
struct
stat
sb
;
i
=
stat
(
file
,
&
sb
);
...
...
@@ -164,8 +167,9 @@ int RAND_write_file(const char *file)
}
#endif
}
#endif
#if defined(O_CREAT) && !defined(OPENSSL_SYS_WIN32)
#if defined(O_CREAT) && !defined(OPENSSL_SYS_WIN32)
&& !defined(OPENSSL_NO_POSIX_IO)
{
/* For some reason Win32 can't write to files created this way */
...
...
crypto/x509/by_dir.c
浏览文件 @
49e3c9d8
...
...
@@ -65,9 +65,7 @@
#ifndef NO_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef MAC_OS_pre_X
# include <stat.h>
#else
#ifndef OPENSSL_NO_POSIX_IO
# include <sys/stat.h>
#endif
...
...
@@ -254,7 +252,6 @@ static int get_cert_by_subject(X509_LOOKUP *xl, int type, X509_NAME *name,
int
i
,
j
,
k
;
unsigned
long
h
;
BUF_MEM
*
b
=
NULL
;
struct
stat
st
;
X509_OBJECT
stmp
,
*
tmp
;
const
char
*
postfix
=
""
;
...
...
@@ -334,8 +331,13 @@ static int get_cert_by_subject(X509_LOOKUP *xl, int type, X509_NAME *name,
postfix
,
k
);
}
k
++
;
#ifndef OPENSSL_NO_POSIX_IO
{
struct
stat
st
;
if
(
stat
(
b
->
data
,
&
st
)
<
0
)
break
;
}
#endif
/* found one. */
if
(
type
==
X509_LU_X509
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录