Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
e0c1ea90
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看板
提交
e0c1ea90
编写于
6月 01, 2006
作者:
D
Dr. Stephen Henson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix error code. make update
上级
6f88c6a6
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
67 addition
and
3 deletion
+67
-3
TABLE
TABLE
+28
-0
crypto/engine/Makefile
crypto/engine/Makefile
+9
-0
crypto/engine/eng_err.c
crypto/engine/eng_err.c
+2
-0
crypto/engine/engine.h
crypto/engine/engine.h
+2
-0
crypto/engine/tb_pkmeth.c
crypto/engine/tb_pkmeth.c
+2
-2
crypto/evp/Makefile
crypto/evp/Makefile
+13
-0
util/libeay.num
util/libeay.num
+11
-1
未找到文件。
TABLE
浏览文件 @
e0c1ea90
...
...
@@ -1848,6 +1848,34 @@ $shared_extension =
$ranlib =
$arflags =
*** debug-steve-opt
$cc = gcc
$cflags = -DL_ENDIAN -DREF_CHECK -DCONF_DEBUG -DDEBUG_SAFESTACK -DCRYPTO_MDEBUG_ALL -DPEDANTIC -g -march=i486 -pedantic -Wno-long-long -Wall -Werror -Wshadow -pipe -O3
$unistd =
$thread_cflag = -D_REENTRANT
$sys_id =
$lflags = -rdynamic -ldl
$bn_ops = BN_LLONG DES_PTR DES_RISC1 DES_UNROLL RC4_INDEX MD2_INT
$cpuid_obj = x86cpuid-elf.o
$bn_obj = bn86-elf.o co86-elf.o mo86-elf.o
$des_obj = dx86-elf.o yx86-elf.o
$aes_obj = ax86-elf.o
$bf_obj = bx86-elf.o
$md5_obj = mx86-elf.o
$sha1_obj = sx86-elf.o s512sse2-elf.o
$cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj = wp_block.o w86mmx-elf.o
$dso_scheme = dlfcn
$shared_target= linux-shared
$shared_cflag =
$shared_ldflag =
$shared_extension =
$ranlib =
$arflags =
*** debug-ulf
$cc = gcc
$cflags = -DTERMIOS -DL_ENDIAN -march=i486 -Wall -DBN_DEBUG -DBN_DEBUG_RAND -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DOPENSSL_NO_ASM -g -Wformat -Wshadow -Wmissing-prototypes -Wmissing-declarations
...
...
crypto/engine/Makefile
浏览文件 @
e0c1ea90
...
...
@@ -262,6 +262,15 @@ tb_ecdsa.o: ../../include/openssl/opensslconf.h
tb_ecdsa.o
:
../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
tb_ecdsa.o
:
../../include/openssl/safestack.h ../../include/openssl/stack.h
tb_ecdsa.o
:
../../include/openssl/symhacks.h ../cryptlib.h eng_int.h tb_ecdsa.c
tb_pkmeth.o
:
../../e_os.h ../../include/openssl/bio.h
tb_pkmeth.o
:
../../include/openssl/buffer.h ../../include/openssl/crypto.h
tb_pkmeth.o
:
../../include/openssl/e_os2.h ../../include/openssl/engine.h
tb_pkmeth.o
:
../../include/openssl/err.h ../../include/openssl/lhash.h
tb_pkmeth.o
:
../../include/openssl/opensslconf.h
tb_pkmeth.o
:
../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
tb_pkmeth.o
:
../../include/openssl/safestack.h ../../include/openssl/stack.h
tb_pkmeth.o
:
../../include/openssl/symhacks.h ../cryptlib.h eng_int.h
tb_pkmeth.o
:
tb_pkmeth.c
tb_rand.o
:
../../e_os.h ../../include/openssl/bio.h
tb_rand.o
:
../../include/openssl/buffer.h ../../include/openssl/crypto.h
tb_rand.o
:
../../include/openssl/e_os2.h ../../include/openssl/engine.h
...
...
crypto/engine/eng_err.c
浏览文件 @
e0c1ea90
...
...
@@ -86,6 +86,7 @@ static ERR_STRING_DATA ENGINE_str_functs[]=
{
ERR_FUNC
(
ENGINE_F_ENGINE_GET_DEFAULT_TYPE
),
"ENGINE_GET_DEFAULT_TYPE"
},
{
ERR_FUNC
(
ENGINE_F_ENGINE_GET_DIGEST
),
"ENGINE_get_digest"
},
{
ERR_FUNC
(
ENGINE_F_ENGINE_GET_NEXT
),
"ENGINE_get_next"
},
{
ERR_FUNC
(
ENGINE_F_ENGINE_GET_PKEY_METH
),
"ENGINE_get_pkey_meth"
},
{
ERR_FUNC
(
ENGINE_F_ENGINE_GET_PREV
),
"ENGINE_get_prev"
},
{
ERR_FUNC
(
ENGINE_F_ENGINE_INIT
),
"ENGINE_init"
},
{
ERR_FUNC
(
ENGINE_F_ENGINE_LIST_ADD
),
"ENGINE_LIST_ADD"
},
...
...
@@ -149,6 +150,7 @@ static ERR_STRING_DATA ENGINE_str_reasons[]=
{
ERR_REASON
(
ENGINE_R_RSA_NOT_IMPLEMENTED
),
"rsa not implemented"
},
{
ERR_REASON
(
ENGINE_R_UNIMPLEMENTED_CIPHER
),
"unimplemented cipher"
},
{
ERR_REASON
(
ENGINE_R_UNIMPLEMENTED_DIGEST
),
"unimplemented digest"
},
{
ERR_REASON
(
ENGINE_R_UNIMPLEMENTED_PUBLIC_KEY_METHOD
),
"unimplemented public key method"
},
{
ERR_REASON
(
ENGINE_R_VERSION_INCOMPATIBILITY
),
"version incompatibility"
},
{
0
,
NULL
}
};
...
...
crypto/engine/engine.h
浏览文件 @
e0c1ea90
...
...
@@ -724,6 +724,7 @@ void ERR_load_ENGINE_strings(void);
#define ENGINE_F_ENGINE_GET_DEFAULT_TYPE 177
#define ENGINE_F_ENGINE_GET_DIGEST 186
#define ENGINE_F_ENGINE_GET_NEXT 115
#define ENGINE_F_ENGINE_GET_PKEY_METH 192
#define ENGINE_F_ENGINE_GET_PREV 116
#define ENGINE_F_ENGINE_INIT 119
#define ENGINE_F_ENGINE_LIST_ADD 120
...
...
@@ -784,6 +785,7 @@ void ERR_load_ENGINE_strings(void);
#define ENGINE_R_RSA_NOT_IMPLEMENTED 141
#define ENGINE_R_UNIMPLEMENTED_CIPHER 146
#define ENGINE_R_UNIMPLEMENTED_DIGEST 147
#define ENGINE_R_UNIMPLEMENTED_PUBLIC_KEY_METHOD 101
#define ENGINE_R_VERSION_INCOMPATIBILITY 145
#ifdef __cplusplus
...
...
crypto/engine/tb_pkmeth.c
浏览文件 @
e0c1ea90
...
...
@@ -122,8 +122,8 @@ const EVP_PKEY_METHOD *ENGINE_get_pkey_meth(ENGINE *e, int nid)
ENGINE_PKEY_METHS_PTR
fn
=
ENGINE_get_pkey_meths
(
e
);
if
(
!
fn
||
!
fn
(
e
,
&
ret
,
NULL
,
nid
))
{
ENGINEerr
(
ENGINE_F_ENGINE_GET_
CIPHER
,
ENGINE_R_UNIMPLEMENTED_
CIPHER
);
ENGINEerr
(
ENGINE_F_ENGINE_GET_
PKEY_METH
,
ENGINE_R_UNIMPLEMENTED_
PUBLIC_KEY_METHOD
);
return
NULL
;
}
return
ret
;
...
...
crypto/evp/Makefile
浏览文件 @
e0c1ea90
...
...
@@ -504,6 +504,19 @@ m_sha1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
m_sha1.o
:
../../include/openssl/stack.h ../../include/openssl/symhacks.h
m_sha1.o
:
../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
m_sha1.o
:
../cryptlib.h m_sha1.c
m_sigver.o
:
../../e_os.h ../../include/openssl/asn1.h
m_sigver.o
:
../../include/openssl/bio.h ../../include/openssl/buffer.h
m_sigver.o
:
../../include/openssl/crypto.h ../../include/openssl/e_os2.h
m_sigver.o
:
../../include/openssl/ec.h ../../include/openssl/ecdh.h
m_sigver.o
:
../../include/openssl/ecdsa.h ../../include/openssl/err.h
m_sigver.o
:
../../include/openssl/evp.h ../../include/openssl/lhash.h
m_sigver.o
:
../../include/openssl/obj_mac.h ../../include/openssl/objects.h
m_sigver.o
:
../../include/openssl/opensslconf.h
m_sigver.o
:
../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
m_sigver.o
:
../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
m_sigver.o
:
../../include/openssl/sha.h ../../include/openssl/stack.h
m_sigver.o
:
../../include/openssl/symhacks.h ../../include/openssl/x509.h
m_sigver.o
:
../../include/openssl/x509_vfy.h ../cryptlib.h m_sigver.c
m_wp.o
:
../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
m_wp.o
:
../../include/openssl/buffer.h ../../include/openssl/crypto.h
m_wp.o
:
../../include/openssl/e_os2.h ../../include/openssl/ec.h
...
...
util/libeay.num
浏览文件 @
e0c1ea90
...
...
@@ -3647,7 +3647,8 @@ EVP_PKEY_asn1_get0 4042 EXIST::FUNCTION:
EVP_PKEY_paramgen_init 4043 EXIST::FUNCTION:
EVP_PKEY_sign 4044 EXIST::FUNCTION:
EVP_PKEY_meth_set_init 4045 EXIST::FUNCTION:
EVP_PKEY_meth_set_verify_recover 4046 EXIST::FUNCTION:
EVP_PKEY_meth_set_verify_recover 4046 EXIST:!VMS:FUNCTION:
EVP_PKEY_meth_set_vrfy_recover 4046 EXIST:VMS:FUNCTION:
EVP_PKEY_CTX_set_cb 4047 EXIST::FUNCTION:
EVP_PKEY_meth_set_derive 4048 EXIST::FUNCTION:
BUF_reverse 4049 EXIST::FUNCTION:
...
...
@@ -3710,3 +3711,12 @@ EVP_DigestSignFinal 4105 EXIST::FUNCTION:
EVP_PKEY_CTX_dup 4106 EXIST::FUNCTION:
EVP_PKEY_meth_free 4107 EXIST::FUNCTION:
EVP_PKEY_meth_set_copy 4108 EXIST::FUNCTION:
ENGINE_register_pkey_meths 4109 EXIST::FUNCTION:ENGINE
ENGINE_get_pkey_meth 4110 EXIST::FUNCTION:ENGINE
EVP_PKEY_CTX_set0_keygen_info 4111 EXIST::FUNCTION:
ENGINE_get_pkey_meths 4112 EXIST::FUNCTION:ENGINE
ENGINE_register_all_pkey_meths 4113 EXIST::FUNCTION:ENGINE
EVP_PKEY_CTX_get_cb 4114 EXIST::FUNCTION:
EVP_PKEY_CTX_get_operation 4115 EXIST::FUNCTION:
ENGINE_unregister_pkey_meths 4116 EXIST::FUNCTION:ENGINE
ENGINE_set_pkey_meths 4117 EXIST::FUNCTION:ENGINE
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录