Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
47c9a1b5
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看板
提交
47c9a1b5
编写于
10月 07, 2015
作者:
D
Dr. Stephen Henson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
embed support for ASN1_STRING
Reviewed-by:
N
Rich Salz
<
rsalz@openssl.org
>
上级
a332635e
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
18 addition
and
7 deletion
+18
-7
crypto/asn1/asn1_lib.c
crypto/asn1/asn1_lib.c
+2
-1
crypto/asn1/tasn_new.c
crypto/asn1/tasn_new.c
+14
-6
include/openssl/asn1.h
include/openssl/asn1.h
+2
-0
未找到文件。
crypto/asn1/asn1_lib.c
浏览文件 @
47c9a1b5
...
@@ -363,6 +363,7 @@ void ASN1_STRING_free(ASN1_STRING *a)
...
@@ -363,6 +363,7 @@ void ASN1_STRING_free(ASN1_STRING *a)
return
;
return
;
if
(
!
(
a
->
flags
&
ASN1_STRING_FLAG_NDEF
))
if
(
!
(
a
->
flags
&
ASN1_STRING_FLAG_NDEF
))
OPENSSL_free
(
a
->
data
);
OPENSSL_free
(
a
->
data
);
if
(
!
(
a
->
flags
&
ASN1_STRING_FLAG_EMBED
))
OPENSSL_free
(
a
);
OPENSSL_free
(
a
);
}
}
...
...
crypto/asn1/tasn_new.c
浏览文件 @
47c9a1b5
...
@@ -67,7 +67,8 @@
...
@@ -67,7 +67,8 @@
static
int
asn1_item_embed_new
(
ASN1_VALUE
**
pval
,
const
ASN1_ITEM
*
it
,
static
int
asn1_item_embed_new
(
ASN1_VALUE
**
pval
,
const
ASN1_ITEM
*
it
,
int
embed
);
int
embed
);
static
int
asn1_primitive_new
(
ASN1_VALUE
**
pval
,
const
ASN1_ITEM
*
it
);
static
int
asn1_primitive_new
(
ASN1_VALUE
**
pval
,
const
ASN1_ITEM
*
it
,
int
embed
);
static
void
asn1_item_clear
(
ASN1_VALUE
**
pval
,
const
ASN1_ITEM
*
it
);
static
void
asn1_item_clear
(
ASN1_VALUE
**
pval
,
const
ASN1_ITEM
*
it
);
static
int
asn1_template_new
(
ASN1_VALUE
**
pval
,
const
ASN1_TEMPLATE
*
tt
);
static
int
asn1_template_new
(
ASN1_VALUE
**
pval
,
const
ASN1_TEMPLATE
*
tt
);
static
void
asn1_template_clear
(
ASN1_VALUE
**
pval
,
const
ASN1_TEMPLATE
*
tt
);
static
void
asn1_template_clear
(
ASN1_VALUE
**
pval
,
const
ASN1_TEMPLATE
*
tt
);
...
@@ -120,12 +121,12 @@ int asn1_item_embed_new(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed)
...
@@ -120,12 +121,12 @@ int asn1_item_embed_new(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed)
if
(
it
->
templates
)
{
if
(
it
->
templates
)
{
if
(
!
asn1_template_new
(
pval
,
it
->
templates
))
if
(
!
asn1_template_new
(
pval
,
it
->
templates
))
goto
memerr
;
goto
memerr
;
}
else
if
(
!
asn1_primitive_new
(
pval
,
it
))
}
else
if
(
!
asn1_primitive_new
(
pval
,
it
,
embed
))
goto
memerr
;
goto
memerr
;
break
;
break
;
case
ASN1_ITYPE_MSTRING
:
case
ASN1_ITYPE_MSTRING
:
if
(
!
asn1_primitive_new
(
pval
,
it
))
if
(
!
asn1_primitive_new
(
pval
,
it
,
embed
))
goto
memerr
;
goto
memerr
;
break
;
break
;
...
@@ -305,7 +306,8 @@ static void asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt)
...
@@ -305,7 +306,8 @@ static void asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt)
* all the old functions.
* all the old functions.
*/
*/
static
int
asn1_primitive_new
(
ASN1_VALUE
**
pval
,
const
ASN1_ITEM
*
it
)
static
int
asn1_primitive_new
(
ASN1_VALUE
**
pval
,
const
ASN1_ITEM
*
it
,
int
embed
)
{
{
ASN1_TYPE
*
typ
;
ASN1_TYPE
*
typ
;
ASN1_STRING
*
str
;
ASN1_STRING
*
str
;
...
@@ -347,10 +349,16 @@ static int asn1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
...
@@ -347,10 +349,16 @@ static int asn1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
break
;
break
;
default:
default:
if
(
embed
)
{
str
=
*
(
ASN1_STRING
**
)
pval
;
memset
(
str
,
0
,
sizeof
(
*
str
));
str
->
flags
=
ASN1_STRING_FLAG_EMBED
;
}
else
{
str
=
ASN1_STRING_type_new
(
utype
);
str
=
ASN1_STRING_type_new
(
utype
);
*
pval
=
(
ASN1_VALUE
*
)
str
;
}
if
(
it
->
itype
==
ASN1_ITYPE_MSTRING
&&
str
)
if
(
it
->
itype
==
ASN1_ITYPE_MSTRING
&&
str
)
str
->
flags
|=
ASN1_STRING_FLAG_MSTRING
;
str
->
flags
|=
ASN1_STRING_FLAG_MSTRING
;
*
pval
=
(
ASN1_VALUE
*
)
str
;
break
;
break
;
}
}
if
(
*
pval
)
if
(
*
pval
)
...
...
include/openssl/asn1.h
浏览文件 @
47c9a1b5
...
@@ -179,6 +179,8 @@ DECLARE_STACK_OF(X509_ALGOR)
...
@@ -179,6 +179,8 @@ DECLARE_STACK_OF(X509_ALGOR)
* type.
* type.
*/
*/
# define ASN1_STRING_FLAG_MSTRING 0x040
# define ASN1_STRING_FLAG_MSTRING 0x040
/* String is embedded and only content should be freed */
# define ASN1_STRING_FLAG_EMBED 0x080
/* This is the base type that holds just about everything :-) */
/* This is the base type that holds just about everything :-) */
struct
asn1_string_st
{
struct
asn1_string_st
{
int
length
;
int
length
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录