Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
7bdeeb64
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看板
提交
7bdeeb64
编写于
4月 30, 2005
作者:
D
Dr. Stephen Henson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Don't attempt to parse nested ASN1 strings by default.
上级
43b45a42
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
9 addition
and
2 deletion
+9
-2
crypto/asn1/asn1.h
crypto/asn1/asn1.h
+1
-0
crypto/asn1/asn1_err.c
crypto/asn1/asn1_err.c
+1
-0
crypto/asn1/tasn_dec.c
crypto/asn1/tasn_dec.c
+7
-2
未找到文件。
crypto/asn1/asn1.h
浏览文件 @
7bdeeb64
...
...
@@ -1171,6 +1171,7 @@ void ERR_load_ASN1_strings(void);
#define ASN1_R_MISSING_VALUE 189
#define ASN1_R_MSTRING_NOT_UNIVERSAL 139
#define ASN1_R_MSTRING_WRONG_TAG 140
#define ASN1_R_NESTED_ASN1_STRING 197
#define ASN1_R_NON_HEX_CHARACTERS 141
#define ASN1_R_NOT_ASCII_FORMAT 190
#define ASN1_R_NOT_ENOUGH_DATA 142
...
...
crypto/asn1/asn1_err.c
浏览文件 @
7bdeeb64
...
...
@@ -227,6 +227,7 @@ static ERR_STRING_DATA ASN1_str_reasons[]=
{
ERR_REASON
(
ASN1_R_MISSING_VALUE
)
,
"missing value"
},
{
ERR_REASON
(
ASN1_R_MSTRING_NOT_UNIVERSAL
),
"mstring not universal"
},
{
ERR_REASON
(
ASN1_R_MSTRING_WRONG_TAG
)
,
"mstring wrong tag"
},
{
ERR_REASON
(
ASN1_R_NESTED_ASN1_STRING
)
,
"nested asn1 string"
},
{
ERR_REASON
(
ASN1_R_NON_HEX_CHARACTERS
)
,
"non hex characters"
},
{
ERR_REASON
(
ASN1_R_NOT_ASCII_FORMAT
)
,
"not ascii format"
},
{
ERR_REASON
(
ASN1_R_NOT_ENOUGH_DATA
)
,
"not enough data"
},
...
...
crypto/asn1/tasn_dec.c
浏览文件 @
7bdeeb64
...
...
@@ -3,7 +3,7 @@
* project 2000.
*/
/* ====================================================================
* Copyright (c) 2000-200
4
The OpenSSL Project. All rights reserved.
* Copyright (c) 2000-200
5
The OpenSSL Project. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
...
...
@@ -1075,7 +1075,7 @@ static int asn1_find_end(const unsigned char **in, long len, char inf)
expected_eoc
=
1
;
/* Indefinite length constructed form. Find the end when enough EOCs
* are found. If more indefinite length constructed headers
* are encountered increment the expected eoc count otherwise just
* are encountered increment the expected eoc count otherwise just
i
* skip to the end of the data.
*/
while
(
len
>
0
)
...
...
@@ -1159,8 +1159,13 @@ static int asn1_collect(BUF_MEM *buf, const unsigned char **in, long len,
/* If indefinite length constructed update max length */
if
(
cst
)
{
#ifdef OPENSSL_ALLOW_NESTED_ASN1_STRINGS
if
(
!
asn1_collect
(
buf
,
&
p
,
plen
,
ininf
,
tag
,
aclass
))
return
0
;
#else
ASN1err
(
ASN1_F_ASN1_COLLECT
,
ASN1_R_NESTED_ASN1_STRING
);
return
0
;
#endif
}
else
if
(
!
collect_data
(
buf
,
&
p
,
plen
))
return
0
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录