Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
fa0f834c
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,发现更多精彩内容 >>
提交
fa0f834c
编写于
9月 15, 2008
作者:
G
Geoff Thorpe
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix build warnings.
上级
96562f2f
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
3 addition
and
4 deletion
+3
-4
crypto/bn/bn_nist.c
crypto/bn/bn_nist.c
+0
-1
crypto/x509/x509_vfy.c
crypto/x509/x509_vfy.c
+1
-1
crypto/x509v3/v3_ncons.c
crypto/x509v3/v3_ncons.c
+2
-2
未找到文件。
crypto/bn/bn_nist.c
浏览文件 @
fa0f834c
...
@@ -715,7 +715,6 @@ int BN_nist_mod_521(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
...
@@ -715,7 +715,6 @@ int BN_nist_mod_521(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
#define BN_NIST_521_TOP_MASK (BN_ULONG)0x1FF
#define BN_NIST_521_TOP_MASK (BN_ULONG)0x1FF
#endif
#endif
int
top
,
ret
=
0
;
int
top
,
ret
=
0
;
BN_ULONG
*
r_d
;
BIGNUM
*
tmp
;
BIGNUM
*
tmp
;
field
=
&
_bignum_nist_p_521
;
/* just to make sure */
field
=
&
_bignum_nist_p_521
;
/* just to make sure */
...
...
crypto/x509/x509_vfy.c
浏览文件 @
fa0f834c
...
@@ -823,7 +823,7 @@ static int get_crl_sk(X509_STORE_CTX *ctx, X509_CRL **pcrl, X509_CRL **pdcrl,
...
@@ -823,7 +823,7 @@ static int get_crl_sk(X509_STORE_CTX *ctx, X509_CRL **pcrl, X509_CRL **pdcrl,
unsigned
int
reasons
,
best_reasons
=
0
;
unsigned
int
reasons
,
best_reasons
=
0
;
X509
*
x
=
ctx
->
current_cert
;
X509
*
x
=
ctx
->
current_cert
;
X509_CRL
*
crl
,
*
best_crl
=
NULL
;
X509_CRL
*
crl
,
*
best_crl
=
NULL
;
X509
*
crl_issuer
,
*
best_crl_issuer
=
NULL
;
X509
*
crl_issuer
=
NULL
,
*
best_crl_issuer
=
NULL
;
for
(
i
=
0
;
i
<
sk_X509_CRL_num
(
crls
);
i
++
)
for
(
i
=
0
;
i
<
sk_X509_CRL_num
(
crls
);
i
++
)
{
{
...
...
crypto/x509v3/v3_ncons.c
浏览文件 @
fa0f834c
...
@@ -458,7 +458,7 @@ static int nc_uri(ASN1_IA5STRING *uri, ASN1_IA5STRING *base)
...
@@ -458,7 +458,7 @@ static int nc_uri(ASN1_IA5STRING *uri, ASN1_IA5STRING *base)
const
char
*
baseptr
=
(
char
*
)
base
->
data
;
const
char
*
baseptr
=
(
char
*
)
base
->
data
;
const
char
*
hostptr
=
(
char
*
)
uri
->
data
;
const
char
*
hostptr
=
(
char
*
)
uri
->
data
;
const
char
*
p
=
strchr
(
hostptr
,
':'
);
const
char
*
p
=
strchr
(
hostptr
,
':'
);
size_
t
hostlen
;
in
t
hostlen
;
/* Check for foo:// and skip past it */
/* Check for foo:// and skip past it */
if
(
!
p
||
(
p
[
1
]
!=
'/'
)
||
(
p
[
2
]
!=
'/'
))
if
(
!
p
||
(
p
[
1
]
!=
'/'
)
||
(
p
[
2
]
!=
'/'
))
return
X509_V_ERR_UNSUPPORTED_NAME_SYNTAX
;
return
X509_V_ERR_UNSUPPORTED_NAME_SYNTAX
;
...
@@ -493,7 +493,7 @@ static int nc_uri(ASN1_IA5STRING *uri, ASN1_IA5STRING *base)
...
@@ -493,7 +493,7 @@ static int nc_uri(ASN1_IA5STRING *uri, ASN1_IA5STRING *base)
return
X509_V_ERR_PERMITTED_VIOLATION
;
return
X509_V_ERR_PERMITTED_VIOLATION
;
}
}
if
((
base
->
length
!=
hostlen
)
||
strncasecmp
(
hostptr
,
baseptr
,
hostlen
))
if
((
base
->
length
!=
(
int
)
hostlen
)
||
strncasecmp
(
hostptr
,
baseptr
,
hostlen
))
return
X509_V_ERR_PERMITTED_VIOLATION
;
return
X509_V_ERR_PERMITTED_VIOLATION
;
return
X509_V_OK
;
return
X509_V_OK
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录