Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
81063953
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看板
提交
81063953
编写于
6月 19, 2013
作者:
D
Dr. Stephen Henson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add control to retrieve signature MD.
上级
e423c360
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
26 addition
and
0 deletion
+26
-0
crypto/dsa/dsa_pmeth.c
crypto/dsa/dsa_pmeth.c
+4
-0
crypto/ec/ec_pmeth.c
crypto/ec/ec_pmeth.c
+4
-0
crypto/evp/evp.h
crypto/evp/evp.h
+6
-0
crypto/rsa/rsa_pmeth.c
crypto/rsa/rsa_pmeth.c
+4
-0
engines/ccgost/gost_pmeth.c
engines/ccgost/gost_pmeth.c
+8
-0
未找到文件。
crypto/dsa/dsa_pmeth.c
浏览文件 @
81063953
...
...
@@ -199,6 +199,10 @@ static int pkey_dsa_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2)
dctx
->
md
=
p2
;
return
1
;
case
EVP_PKEY_CTRL_GET_MD
:
*
(
const
EVP_MD
**
)
p2
=
dctx
->
md
;
return
1
;
case
EVP_PKEY_CTRL_DIGESTINIT
:
case
EVP_PKEY_CTRL_PKCS7_SIGN
:
case
EVP_PKEY_CTRL_CMS_SIGN
:
...
...
crypto/ec/ec_pmeth.c
浏览文件 @
81063953
...
...
@@ -242,6 +242,10 @@ static int pkey_ec_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2)
dctx
->
md
=
p2
;
return
1
;
case
EVP_PKEY_CTRL_GET_MD
:
*
(
const
EVP_MD
**
)
p2
=
dctx
->
md
;
return
1
;
case
EVP_PKEY_CTRL_PEER_KEY
:
/* Default behaviour is OK */
case
EVP_PKEY_CTRL_DIGESTINIT
:
...
...
crypto/evp/evp.h
浏览文件 @
81063953
...
...
@@ -1113,6 +1113,10 @@ void EVP_PKEY_asn1_set_ctrl(EVP_PKEY_ASN1_METHOD *ameth,
EVP_PKEY_CTX_ctrl(ctx, -1, EVP_PKEY_OP_TYPE_SIG, \
EVP_PKEY_CTRL_MD, 0, (void *)md)
#define EVP_PKEY_CTX_get_signature_md(ctx, pmd) \
EVP_PKEY_CTX_ctrl(ctx, -1, EVP_PKEY_OP_TYPE_SIG, \
EVP_PKEY_CTRL_GET_MD, 0, (void *)pmd)
#define EVP_PKEY_CTRL_MD 1
#define EVP_PKEY_CTRL_PEER_KEY 2
...
...
@@ -1134,6 +1138,8 @@ void EVP_PKEY_asn1_set_ctrl(EVP_PKEY_ASN1_METHOD *ameth,
#define EVP_PKEY_CTRL_CIPHER 12
#define EVP_PKEY_CTRL_GET_MD 13
#define EVP_PKEY_ALG_CTRL 0x1000
...
...
crypto/rsa/rsa_pmeth.c
浏览文件 @
81063953
...
...
@@ -534,6 +534,10 @@ static int pkey_rsa_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2)
rctx
->
md
=
p2
;
return
1
;
case
EVP_PKEY_CTRL_GET_MD
:
*
(
const
EVP_MD
**
)
p2
=
rctx
->
md
;
return
1
;
case
EVP_PKEY_CTRL_RSA_MGF1_MD
:
case
EVP_PKEY_CTRL_GET_RSA_MGF1_MD
:
if
(
rctx
->
pad_mode
!=
RSA_PKCS1_PSS_PADDING
...
...
engines/ccgost/gost_pmeth.c
浏览文件 @
81063953
...
...
@@ -86,6 +86,10 @@ static int pkey_gost_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2)
}
break
;
case
EVP_PKEY_CTRL_GET_MD
:
*
(
const
EVP_MD
**
)
p2
=
pctx
->
md
;
return
1
;
case
EVP_PKEY_CTRL_PKCS7_ENCRYPT
:
case
EVP_PKEY_CTRL_PKCS7_DECRYPT
:
case
EVP_PKEY_CTRL_PKCS7_SIGN
:
...
...
@@ -464,6 +468,10 @@ static int pkey_gost_mac_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2)
}
break
;
case
EVP_PKEY_CTRL_GET_MD
:
*
(
const
EVP_MD
**
)
p2
=
data
->
md
;
return
1
;
case
EVP_PKEY_CTRL_PKCS7_ENCRYPT
:
case
EVP_PKEY_CTRL_PKCS7_DECRYPT
:
case
EVP_PKEY_CTRL_PKCS7_SIGN
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录