Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
f16a64d1
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看板
提交
f16a64d1
编写于
2月 02, 2015
作者:
R
Rich Salz
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Dead code cleanup; remove #if 0 from crypto/engine
Reviewed-by:
N
Richard Levitte
<
levitte@openssl.org
>
上级
9ccc00ef
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
0 addition
and
42 deletion
+0
-42
crypto/engine/eng_all.c
crypto/engine/eng_all.c
+0
-9
crypto/engine/eng_list.c
crypto/engine/eng_list.c
+0
-9
crypto/engine/tb_store.c
crypto/engine/tb_store.c
+0
-24
未找到文件。
crypto/engine/eng_all.c
浏览文件 @
f16a64d1
...
@@ -64,15 +64,6 @@ void ENGINE_load_builtin_engines(void)
...
@@ -64,15 +64,6 @@ void ENGINE_load_builtin_engines(void)
{
{
/* Some ENGINEs need this */
/* Some ENGINEs need this */
OPENSSL_cpuid_setup
();
OPENSSL_cpuid_setup
();
#if 0
/*
* There's no longer any need for an "openssl" ENGINE unless, one day, it
* is the *only* way for standard builtin implementations to be be
* accessed (ie. it would be possible to statically link binaries with
* *no* builtin implementations).
*/
ENGINE_load_openssl();
#endif
#if !defined(OPENSSL_NO_HW) && (defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV))
#if !defined(OPENSSL_NO_HW) && (defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV))
ENGINE_load_cryptodev
();
ENGINE_load_cryptodev
();
#endif
#endif
...
...
crypto/engine/eng_list.c
浏览文件 @
f16a64d1
...
@@ -353,14 +353,6 @@ ENGINE *ENGINE_by_id(const char *id)
...
@@ -353,14 +353,6 @@ ENGINE *ENGINE_by_id(const char *id)
}
}
}
}
CRYPTO_w_unlock
(
CRYPTO_LOCK_ENGINE
);
CRYPTO_w_unlock
(
CRYPTO_LOCK_ENGINE
);
#if 0
if (iterator == NULL) {
ENGINEerr(ENGINE_F_ENGINE_BY_ID, ENGINE_R_NO_SUCH_ENGINE);
ERR_add_error_data(2, "id=", id);
}
return iterator;
#else
/* EEK! Experimental code starts */
if
(
iterator
)
if
(
iterator
)
return
iterator
;
return
iterator
;
/*
/*
...
@@ -390,7 +382,6 @@ ENGINE *ENGINE_by_id(const char *id)
...
@@ -390,7 +382,6 @@ ENGINE *ENGINE_by_id(const char *id)
ERR_add_error_data
(
2
,
"id="
,
id
);
ERR_add_error_data
(
2
,
"id="
,
id
);
return
NULL
;
return
NULL
;
/* EEK! Experimental code ends */
/* EEK! Experimental code ends */
#endif
}
}
int
ENGINE_up_ref
(
ENGINE
*
e
)
int
ENGINE_up_ref
(
ENGINE
*
e
)
...
...
crypto/engine/tb_store.c
浏览文件 @
f16a64d1
...
@@ -91,30 +91,6 @@ void ENGINE_register_all_STORE()
...
@@ -91,30 +91,6 @@ void ENGINE_register_all_STORE()
ENGINE_register_STORE
(
e
);
ENGINE_register_STORE
(
e
);
}
}
/* The following two functions are removed because they're useless. */
#if 0
int ENGINE_set_default_STORE(ENGINE *e)
{
if (e->store_meth)
return engine_table_register(&store_table,
engine_unregister_all_STORE, e,
&dummy_nid, 1, 1);
return 1;
}
#endif
#if 0
/*
* Exposed API function to get a functional reference from the implementation
* table (ie. try to get a functional reference from the tabled structural
* references).
*/
ENGINE *ENGINE_get_default_STORE(void)
{
return engine_table_select(&store_table, dummy_nid);
}
#endif
/* Obtains an STORE implementation from an ENGINE functional reference */
/* Obtains an STORE implementation from an ENGINE functional reference */
const
STORE_METHOD
*
ENGINE_get_STORE
(
const
ENGINE
*
e
)
const
STORE_METHOD
*
ENGINE_get_STORE
(
const
ENGINE
*
e
)
{
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录