Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
d6755bb6
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看板
提交
d6755bb6
编写于
2月 03, 2016
作者:
D
Dr. Stephen Henson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
use enum type for do_EC_KEY_print
Reviewed-by:
N
Viktor Dukhovni
<
viktor@openssl.org
>
上级
d810700b
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
14 addition
and
8 deletion
+14
-8
crypto/ec/ec_ameth.c
crypto/ec/ec_ameth.c
+14
-8
未找到文件。
crypto/ec/ec_ameth.c
浏览文件 @
d6755bb6
...
@@ -379,7 +379,13 @@ static void int_ec_free(EVP_PKEY *pkey)
...
@@ -379,7 +379,13 @@ static void int_ec_free(EVP_PKEY *pkey)
EC_KEY_free
(
pkey
->
pkey
.
ec
);
EC_KEY_free
(
pkey
->
pkey
.
ec
);
}
}
static
int
do_EC_KEY_print
(
BIO
*
bp
,
const
EC_KEY
*
x
,
int
off
,
int
ktype
)
typedef
enum
{
EC_KEY_PRINT_PRIVATE
,
EC_KEY_PRINT_PUBLIC
,
EC_KEY_PRINT_PARAM
}
ec_print_t
;
static
int
do_EC_KEY_print
(
BIO
*
bp
,
const
EC_KEY
*
x
,
int
off
,
ec_print_t
ktype
)
{
{
unsigned
char
*
buffer
=
NULL
;
unsigned
char
*
buffer
=
NULL
;
const
char
*
ecstr
;
const
char
*
ecstr
;
...
@@ -395,7 +401,7 @@ static int do_EC_KEY_print(BIO *bp, const EC_KEY *x, int off, int ktype)
...
@@ -395,7 +401,7 @@ static int do_EC_KEY_print(BIO *bp, const EC_KEY *x, int off, int ktype)
goto
err
;
goto
err
;
}
}
if
(
ktype
>
0
)
{
if
(
ktype
!=
EC_KEY_PRINT_PARAM
)
{
public_key
=
EC_KEY_get0_public_key
(
x
);
public_key
=
EC_KEY_get0_public_key
(
x
);
if
(
public_key
!=
NULL
)
{
if
(
public_key
!=
NULL
)
{
pub_len
=
EC_POINT_point2oct
(
group
,
public_key
,
pub_len
=
EC_POINT_point2oct
(
group
,
public_key
,
...
@@ -409,7 +415,7 @@ static int do_EC_KEY_print(BIO *bp, const EC_KEY *x, int off, int ktype)
...
@@ -409,7 +415,7 @@ static int do_EC_KEY_print(BIO *bp, const EC_KEY *x, int off, int ktype)
}
}
}
}
if
(
ktype
==
2
&&
EC_KEY_get0_private_key
(
x
)
!=
NULL
)
{
if
(
ktype
==
EC_KEY_PRINT_PRIVATE
&&
EC_KEY_get0_private_key
(
x
)
!=
NULL
)
{
priv_len
=
EC_KEY_priv2oct
(
x
,
NULL
,
0
);
priv_len
=
EC_KEY_priv2oct
(
x
,
NULL
,
0
);
if
(
priv_len
==
0
)
{
if
(
priv_len
==
0
)
{
reason
=
ERR_R_EC_LIB
;
reason
=
ERR_R_EC_LIB
;
...
@@ -426,9 +432,9 @@ static int do_EC_KEY_print(BIO *bp, const EC_KEY *x, int off, int ktype)
...
@@ -426,9 +432,9 @@ static int do_EC_KEY_print(BIO *bp, const EC_KEY *x, int off, int ktype)
goto
err
;
goto
err
;
}
}
}
}
if
(
ktype
==
2
)
if
(
ktype
==
EC_KEY_PRINT_PRIVATE
)
ecstr
=
"Private-Key"
;
ecstr
=
"Private-Key"
;
else
if
(
ktype
==
1
)
else
if
(
ktype
==
EC_KEY_PRINT_PUBLIC
)
ecstr
=
"Public-Key"
;
ecstr
=
"Public-Key"
;
else
else
ecstr
=
"ECDSA-Parameters"
;
ecstr
=
"ECDSA-Parameters"
;
...
@@ -492,19 +498,19 @@ static int eckey_param_encode(const EVP_PKEY *pkey, unsigned char **pder)
...
@@ -492,19 +498,19 @@ static int eckey_param_encode(const EVP_PKEY *pkey, unsigned char **pder)
static
int
eckey_param_print
(
BIO
*
bp
,
const
EVP_PKEY
*
pkey
,
int
indent
,
static
int
eckey_param_print
(
BIO
*
bp
,
const
EVP_PKEY
*
pkey
,
int
indent
,
ASN1_PCTX
*
ctx
)
ASN1_PCTX
*
ctx
)
{
{
return
do_EC_KEY_print
(
bp
,
pkey
->
pkey
.
ec
,
indent
,
0
);
return
do_EC_KEY_print
(
bp
,
pkey
->
pkey
.
ec
,
indent
,
EC_KEY_PRINT_PARAM
);
}
}
static
int
eckey_pub_print
(
BIO
*
bp
,
const
EVP_PKEY
*
pkey
,
int
indent
,
static
int
eckey_pub_print
(
BIO
*
bp
,
const
EVP_PKEY
*
pkey
,
int
indent
,
ASN1_PCTX
*
ctx
)
ASN1_PCTX
*
ctx
)
{
{
return
do_EC_KEY_print
(
bp
,
pkey
->
pkey
.
ec
,
indent
,
1
);
return
do_EC_KEY_print
(
bp
,
pkey
->
pkey
.
ec
,
indent
,
EC_KEY_PRINT_PUBLIC
);
}
}
static
int
eckey_priv_print
(
BIO
*
bp
,
const
EVP_PKEY
*
pkey
,
int
indent
,
static
int
eckey_priv_print
(
BIO
*
bp
,
const
EVP_PKEY
*
pkey
,
int
indent
,
ASN1_PCTX
*
ctx
)
ASN1_PCTX
*
ctx
)
{
{
return
do_EC_KEY_print
(
bp
,
pkey
->
pkey
.
ec
,
indent
,
2
);
return
do_EC_KEY_print
(
bp
,
pkey
->
pkey
.
ec
,
indent
,
EC_KEY_PRINT_PRIVATE
);
}
}
static
int
old_ec_priv_decode
(
EVP_PKEY
*
pkey
,
static
int
old_ec_priv_decode
(
EVP_PKEY
*
pkey
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录