Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
fd75eb50
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看板
提交
fd75eb50
编写于
6月 11, 2000
作者:
D
Dr. Stephen Henson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Make EVP_SealInit() and EVP_OpenInit() check EVP_EncryptInit() and
EVP_DecryptInit() return values. Update docs.
上级
a91dedca
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
5 addition
and
6 deletion
+5
-6
crypto/evp/p_open.c
crypto/evp/p_open.c
+1
-3
crypto/evp/p_seal.c
crypto/evp/p_seal.c
+1
-1
doc/crypto/EVP_OpenInit.pod
doc/crypto/EVP_OpenInit.pod
+1
-1
doc/crypto/EVP_SealInit.pod
doc/crypto/EVP_SealInit.pod
+2
-1
未找到文件。
crypto/evp/p_open.c
浏览文件 @
fd75eb50
...
...
@@ -71,7 +71,7 @@ int EVP_OpenInit(EVP_CIPHER_CTX *ctx, EVP_CIPHER *type, unsigned char *ek,
if
(
type
)
{
EVP_CIPHER_CTX_init
(
ctx
);
EVP_DecryptInit
(
ctx
,
type
,
NULL
,
NULL
)
;
if
(
!
EVP_DecryptInit
(
ctx
,
type
,
NULL
,
NULL
))
return
0
;
}
if
(
!
priv
)
return
1
;
...
...
@@ -79,7 +79,6 @@ int EVP_OpenInit(EVP_CIPHER_CTX *ctx, EVP_CIPHER *type, unsigned char *ek,
if
(
priv
->
type
!=
EVP_PKEY_RSA
)
{
EVPerr
(
EVP_F_EVP_OPENINIT
,
EVP_R_PUBLIC_KEY_NOT_RSA
);
ret
=
-
1
;
goto
err
;
}
...
...
@@ -89,7 +88,6 @@ int EVP_OpenInit(EVP_CIPHER_CTX *ctx, EVP_CIPHER *type, unsigned char *ek,
{
/* ERROR */
EVPerr
(
EVP_F_EVP_OPENINIT
,
ERR_R_MALLOC_FAILURE
);
ret
=
-
1
;
goto
err
;
}
...
...
crypto/evp/p_seal.c
浏览文件 @
fd75eb50
...
...
@@ -74,7 +74,7 @@ int EVP_SealInit(EVP_CIPHER_CTX *ctx, EVP_CIPHER *type, unsigned char **ek,
if
(
type
)
{
EVP_CIPHER_CTX_init
(
ctx
);
EVP_EncryptInit
(
ctx
,
type
,
NULL
,
NULL
)
;
if
(
!
EVP_EncryptInit
(
ctx
,
type
,
NULL
,
NULL
))
return
0
;
}
if
(
npubk
<=
0
)
return
(
0
);
if
(
RAND_bytes
(
key
,
EVP_MAX_KEY_LENGTH
)
<=
0
)
...
...
doc/crypto/EVP_OpenInit.pod
浏览文件 @
fd75eb50
...
...
@@ -48,7 +48,7 @@ key length must match the fixed cipher length.
EVP_OpenInit() returns -1 on error or a non zero integer (actually the
recovered secret key size) if successful.
EVP_OpenUpdate()
does not return a valu
e.
EVP_OpenUpdate()
returns 1 for success of 0 for failur
e.
EVP_OpenFinal() returns 0 if the decrypt failed or 1 for success.
...
...
doc/crypto/EVP_SealInit.pod
浏览文件 @
fd75eb50
...
...
@@ -43,7 +43,8 @@ page.
EVP_SealInit() returns -1 on error or B<npubk> if successful.
EVP_SealUpdate() and EVP_SealFinal() do not return values.
EVP_SealUpdate() and EVP_SealFinal() return 1 for success and 0 for
failure.
=head1 NOTES
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录