Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
6181f5e4
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看板
提交
6181f5e4
编写于
4月 08, 2007
作者:
D
Dr. Stephen Henson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Preliminary support for signctx/verifyctx callbacks.
上级
d952c79a
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
45 addition
and
13 deletion
+45
-13
crypto/evp/m_sigver.c
crypto/evp/m_sigver.c
+45
-13
未找到文件。
crypto/evp/m_sigver.c
浏览文件 @
6181f5e4
...
...
@@ -3,7 +3,7 @@
* project 2006.
*/
/* ====================================================================
* Copyright (c) 2006 The OpenSSL Project. All rights reserved.
* Copyright (c) 2006
,2007
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
...
...
@@ -61,31 +61,50 @@
#include <openssl/evp.h>
#include <openssl/objects.h>
#include <openssl/x509.h>
#include "evp_locl.h"
static
int
do_sigver_init
(
EVP_MD_CTX
*
ctx
,
EVP_PKEY_CTX
**
pctx
,
const
EVP_MD
*
type
,
ENGINE
*
e
,
EVP_PKEY
*
pkey
,
int
ver
)
{
if
(
!
EVP_DigestInit_ex
(
ctx
,
type
,
e
))
return
0
;
if
(
ctx
->
pctx
==
NULL
)
ctx
->
pctx
=
EVP_PKEY_CTX_new
(
pkey
,
e
);
if
(
ctx
->
pctx
==
NULL
)
return
0
;
if
(
EVP_PKEY_CTX_set_signature_md
(
ctx
->
pctx
,
type
)
<=
0
)
return
0
;
if
(
pctx
)
*
pctx
=
ctx
->
pctx
;
if
(
ver
)
{
if
(
EVP_PKEY_verify_init
(
ctx
->
pctx
)
<=
0
)
if
(
ctx
->
pctx
->
pmeth
->
verifyctx_init
)
{
int
r
;
r
=
ctx
->
pctx
->
pmeth
->
verifyctx_init
(
ctx
->
pctx
,
ctx
);
if
(
r
<=
0
)
return
0
;
if
(
r
==
2
)
return
1
;
}
else
if
(
EVP_PKEY_verify_init
(
ctx
->
pctx
)
<=
0
)
return
0
;
}
else
{
if
(
ctx
->
pctx
->
pmeth
->
signctx_init
)
{
int
r
;
r
=
ctx
->
pctx
->
pmeth
->
signctx_init
(
ctx
->
pctx
,
ctx
);
if
(
r
<=
0
)
return
0
;
if
(
r
==
2
)
return
1
;
}
if
(
EVP_PKEY_sign_init
(
ctx
->
pctx
)
<=
0
)
return
0
;
}
if
(
EVP_PKEY_CTX_set_signature_md
(
ctx
->
pctx
,
type
)
<=
0
)
if
(
!
EVP_DigestInit_ex
(
ctx
,
type
,
e
)
)
return
0
;
if
(
pctx
)
*
pctx
=
ctx
->
pctx
;
return
1
;
}
...
...
@@ -104,7 +123,7 @@ int EVP_DigestVerifyInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx,
int
EVP_DigestSignFinal
(
EVP_MD_CTX
*
ctx
,
unsigned
char
*
sigret
,
size_t
*
siglen
)
{
int
r
;
if
(
sigret
)
{
MS_STATIC
EVP_MD_CTX
tmp_ctx
;
...
...
@@ -112,10 +131,15 @@ int EVP_DigestSignFinal(EVP_MD_CTX *ctx, unsigned char *sigret, size_t *siglen)
unsigned
int
mdlen
;
EVP_MD_CTX_init
(
&
tmp_ctx
);
if
(
!
EVP_MD_CTX_copy_ex
(
&
tmp_ctx
,
ctx
))
return
0
;
if
(
!
EVP_DigestFinal_ex
(
&
tmp_ctx
,
md
,
&
mdlen
))
return
0
;
return
0
;
if
(
tmp_ctx
.
pctx
->
pmeth
->
signctx
)
r
=
tmp_ctx
.
pctx
->
pmeth
->
signctx
(
tmp_ctx
.
pctx
,
sigret
,
siglen
,
&
tmp_ctx
);
else
r
=
EVP_DigestFinal_ex
(
&
tmp_ctx
,
md
,
&
mdlen
);
EVP_MD_CTX_cleanup
(
&
tmp_ctx
);
if
(
!
r
)
return
0
;
if
(
EVP_PKEY_sign
(
ctx
->
pctx
,
sigret
,
siglen
,
md
,
mdlen
)
<=
0
)
return
0
;
}
...
...
@@ -132,12 +156,20 @@ int EVP_DigestVerifyFinal(EVP_MD_CTX *ctx, unsigned char *sig, size_t siglen)
{
MS_STATIC
EVP_MD_CTX
tmp_ctx
;
unsigned
char
md
[
EVP_MAX_MD_SIZE
];
int
r
;
unsigned
int
mdlen
;
EVP_MD_CTX_init
(
&
tmp_ctx
);
if
(
!
EVP_MD_CTX_copy_ex
(
&
tmp_ctx
,
ctx
))
return
-
1
;
if
(
!
EVP_DigestFinal_ex
(
&
tmp_ctx
,
md
,
&
mdlen
))
return
-
1
;
if
(
tmp_ctx
.
pctx
->
pmeth
->
verifyctx
)
{
r
=
tmp_ctx
.
pctx
->
pmeth
->
verifyctx
(
tmp_ctx
.
pctx
,
sig
,
siglen
,
&
tmp_ctx
);
}
else
r
=
EVP_DigestFinal_ex
(
&
tmp_ctx
,
md
,
&
mdlen
);
EVP_MD_CTX_cleanup
(
&
tmp_ctx
);
if
(
!
r
)
return
-
1
;
return
EVP_PKEY_verify
(
ctx
->
pctx
,
sig
,
siglen
,
md
,
mdlen
);
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录