Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
cdbb8c2f
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看板
提交
cdbb8c2f
编写于
1月 02, 1999
作者:
B
Ben Laurie
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix reference counting.
上级
c2245b68
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
11 addition
and
2 deletion
+11
-2
CHANGES
CHANGES
+5
-1
crypto/asn1/x_pubkey.c
crypto/asn1/x_pubkey.c
+6
-1
未找到文件。
CHANGES
浏览文件 @
cdbb8c2f
...
...
@@ -5,11 +5,15 @@
Changes between 0.9.1c and 0.9.2
*) Fix reference counting in X509_PUBKEY_get(). This makes
demos/maurice/example2.c work, amongst others, probably.
[Steve Henson and Ben Laurie]
*) First cut of a cleanup for apps/. First the `ssleay' program is now named
`openssl' and second, the shortcut symlinks for the `openssl <command>'
are no longer created. This way we have a single and consistent command
line interface `openssl <command>', similar to `cvs <command>'.
[Ralf S. Engelschall]
[Ralf S. Engelschall
, Paul Sutton and Ben Laurie
]
*) ca.c: move test for DSA keys inside #ifndef NO_DSA. Make pubkey
BIT STRING wrapper always have zero unused bits.
...
...
crypto/asn1/x_pubkey.c
浏览文件 @
cdbb8c2f
...
...
@@ -222,7 +222,11 @@ X509_PUBKEY *key;
if
(
key
==
NULL
)
goto
err
;
if
(
key
->
pkey
!=
NULL
)
return
(
key
->
pkey
);
if
(
key
->
pkey
!=
NULL
)
{
CRYPTO_add
(
&
key
->
pkey
->
references
,
1
,
CRYPTO_LOCK_EVP_PKEY
);
return
(
key
->
pkey
);
}
if
(
key
->
public_key
==
NULL
)
goto
err
;
...
...
@@ -252,6 +256,7 @@ X509_PUBKEY *key;
}
#endif
key
->
pkey
=
ret
;
CRYPTO_add
(
&
ret
->
references
,
1
,
CRYPTO_LOCK_EVP_PKEY
);
return
(
ret
);
err:
if
(
ret
!=
NULL
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录