Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
2c61a5ec
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看板
提交
2c61a5ec
编写于
12月 13, 2015
作者:
D
Dr. Stephen Henson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Constify EC_KEY in ECDH_compute_key.
Reviewed-by:
N
Richard Levitte
<
levitte@openssl.org
>
上级
c66ce5eb
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
11 addition
and
10 deletion
+11
-10
crypto/ec/ec_kmeth.c
crypto/ec/ec_kmeth.c
+3
-3
crypto/ec/ec_lcl.h
crypto/ec/ec_lcl.h
+2
-2
crypto/ec/ecdh_ossl.c
crypto/ec/ecdh_ossl.c
+1
-1
include/openssl/ec.h
include/openssl/ec.h
+5
-4
未找到文件。
crypto/ec/ec_kmeth.c
浏览文件 @
2c61a5ec
...
...
@@ -134,7 +134,7 @@ EC_KEY *EC_KEY_new_method(ENGINE *engine)
}
int
ECDH_compute_key
(
void
*
out
,
size_t
outlen
,
const
EC_POINT
*
pub_key
,
EC_KEY
*
eckey
,
const
EC_KEY
*
eckey
,
void
*
(
*
KDF
)
(
const
void
*
in
,
size_t
inlen
,
void
*
out
,
size_t
*
outlen
))
{
...
...
@@ -190,7 +190,7 @@ void EC_KEY_METHOD_set_compute_key(EC_KEY_METHOD *meth,
int
(
*
ckey
)(
void
*
out
,
size_t
outlen
,
const
EC_POINT
*
pub_key
,
EC_KEY
*
ecdh
,
const
EC_KEY
*
ecdh
,
void
*
(
*
KDF
)
(
const
void
*
in
,
size_t
inlen
,
void
*
out
,
...
...
@@ -268,7 +268,7 @@ void EC_KEY_METHOD_get_compute_key(EC_KEY_METHOD *meth,
int
(
**
pck
)(
void
*
out
,
size_t
outlen
,
const
EC_POINT
*
pub_key
,
EC_KEY
*
ecdh
,
const
EC_KEY
*
ecdh
,
void
*
(
*
KDF
)
(
const
void
*
in
,
size_t
inlen
,
void
*
out
,
...
...
crypto/ec/ec_lcl.h
浏览文件 @
2c61a5ec
...
...
@@ -568,7 +568,7 @@ struct ec_key_method_st {
int
(
*
set_public
)(
EC_KEY
*
key
,
const
EC_POINT
*
pub_key
);
int
(
*
keygen
)(
EC_KEY
*
key
);
int
(
*
compute_key
)(
void
*
out
,
size_t
outlen
,
const
EC_POINT
*
pub_key
,
EC_KEY
*
ecdh
,
const
EC_KEY
*
ecdh
,
void
*
(
*
KDF
)
(
const
void
*
in
,
size_t
inlen
,
void
*
out
,
size_t
*
outlen
));
...
...
@@ -591,7 +591,7 @@ struct ec_key_method_st {
int
ossl_ec_key_gen
(
EC_KEY
*
eckey
);
int
ossl_ecdh_compute_key
(
void
*
out
,
size_t
outlen
,
const
EC_POINT
*
pub_key
,
EC_KEY
*
ecdh
,
const
EC_KEY
*
ecdh
,
void
*
(
*
KDF
)
(
const
void
*
in
,
size_t
inlen
,
void
*
out
,
size_t
*
outlen
));
...
...
crypto/ec/ecdh_ossl.c
浏览文件 @
2c61a5ec
...
...
@@ -85,7 +85,7 @@
* Finally an optional KDF is applied.
*/
int
ossl_ecdh_compute_key
(
void
*
out
,
size_t
outlen
,
const
EC_POINT
*
pub_key
,
EC_KEY
*
ecdh
,
const
EC_KEY
*
ecdh
,
void
*
(
*
KDF
)
(
const
void
*
in
,
size_t
inlen
,
void
*
out
,
size_t
*
outlen
))
{
...
...
include/openssl/ec.h
浏览文件 @
2c61a5ec
...
...
@@ -1031,8 +1031,9 @@ int ECDH_KDF_X9_62(unsigned char *out, size_t outlen,
const
EVP_MD
*
md
);
int
ECDH_compute_key
(
void
*
out
,
size_t
outlen
,
const
EC_POINT
*
pub_key
,
EC_KEY
*
ecdh
,
void
*
(
*
KDF
)
(
const
void
*
in
,
size_t
inlen
,
void
*
out
,
size_t
*
outlen
));
const
EC_KEY
*
ecdh
,
void
*
(
*
KDF
)
(
const
void
*
in
,
size_t
inlen
,
void
*
out
,
size_t
*
outlen
));
typedef
struct
ECDSA_SIG_st
ECDSA_SIG
;
...
...
@@ -1188,7 +1189,7 @@ void EC_KEY_METHOD_set_compute_key(EC_KEY_METHOD *meth,
int
(
*
ckey
)(
void
*
out
,
size_t
outlen
,
const
EC_POINT
*
pub_key
,
EC_KEY
*
ecdh
,
const
EC_KEY
*
ecdh
,
void
*
(
*
KDF
)
(
const
void
*
in
,
size_t
inlen
,
void
*
out
,
...
...
@@ -1236,7 +1237,7 @@ void EC_KEY_METHOD_get_compute_key(EC_KEY_METHOD *meth,
int
(
**
pck
)(
void
*
out
,
size_t
outlen
,
const
EC_POINT
*
pub_key
,
EC_KEY
*
ecdh
,
const
EC_KEY
*
ecdh
,
void
*
(
*
KDF
)
(
const
void
*
in
,
size_t
inlen
,
void
*
out
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录