Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
4c5e19b6
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看板
提交
4c5e19b6
编写于
12月 16, 2005
作者:
A
Andy Polyakov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Make framework for Whirlpool assembler flexible.
上级
ed26604a
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
40 addition
and
35 deletion
+40
-35
Configure
Configure
+8
-5
TABLE
TABLE
+29
-29
crypto/whrlpool/Makefile
crypto/whrlpool/Makefile
+3
-1
未找到文件。
Configure
浏览文件 @
4c5e19b6
...
...
@@ -114,9 +114,9 @@ my $tlib="-lnsl -lsocket";
my $bits1="THIRTY_TWO_BIT ";
my $bits2="SIXTY_FOUR_BIT ";
my $x86_elf_asm="x86cpuid-elf.o:bn86-elf.o co86-elf.o mo86-elf.o:dx86-elf.o yx86-elf.o:ax86-elf.o:bx86-elf.o:mx86-elf.o:sx86-elf.o s512sse2-elf.o:cx86-elf.o:rx86-elf.o:rm86-elf.o:r586-elf.o:w86mmx-elf.o";
my $x86_coff_asm="x86cpuid-cof.o:bn86-cof.o co86-cof.o mo86-cof.o:dx86-cof.o yx86-cof.o:ax86-cof.o:bx86-cof.o:mx86-cof.o:sx86-cof.o s512sse2-cof.o:cx86-cof.o:rx86-cof.o:rm86-cof.o:r586-cof.o:w86mmx-cof.o";
my $x86_out_asm="x86cpuid-out.o:bn86-out.o co86-out.o mo86-out.o:dx86-out.o yx86-out.o:ax86-out.o:bx86-out.o:mx86-out.o:sx86-out.o s512sse2-out.o:cx86-out.o:rx86-out.o:rm86-out.o:r586-out.o:w86mmx-out.o";
my $x86_elf_asm="x86cpuid-elf.o:bn86-elf.o co86-elf.o mo86-elf.o:dx86-elf.o yx86-elf.o:ax86-elf.o:bx86-elf.o:mx86-elf.o:sx86-elf.o s512sse2-elf.o:cx86-elf.o:rx86-elf.o:rm86-elf.o:r586-elf.o:w
p_block.o w
86mmx-elf.o";
my $x86_coff_asm="x86cpuid-cof.o:bn86-cof.o co86-cof.o mo86-cof.o:dx86-cof.o yx86-cof.o:ax86-cof.o:bx86-cof.o:mx86-cof.o:sx86-cof.o s512sse2-cof.o:cx86-cof.o:rx86-cof.o:rm86-cof.o:r586-cof.o:w
p_block.o w
86mmx-cof.o";
my $x86_out_asm="x86cpuid-out.o:bn86-out.o co86-out.o mo86-out.o:dx86-out.o yx86-out.o:ax86-out.o:bx86-out.o:mx86-out.o:sx86-out.o s512sse2-out.o:cx86-out.o:rx86-out.o:rm86-out.o:r586-out.o:w
p_block.o w
86mmx-out.o";
my $x86_64_asm="x86_64cpuid.o:x86_64-gcc.o x86_64-mont.o::aes-x86_64.o::md5-x86_64.o:sha256-x86_64.o sha512-x86_64.o::rc4-x86_64.o:::wp-x86_64.o";
my $ia64_asm="ia64cpuid.o:bn-ia64.o::aes_core.o aes_cbc.o aes-ia64.o::md5-ia64.o:sha1-ia64.o sha256-ia64.o sha512-ia64.o::rc4-ia64.o:::";
...
...
@@ -1224,10 +1224,13 @@ if ($aes_obj =~ /\.o$/)
else {
$aes_obj=$aes_enc;
}
$wp_obj="" if ($wp_obj =~ /mmx/ && $processor eq "386");
if ($wp_obj =~ /\.o$/)
{
if ($wp_obj =~ /mmx/ && $processor eq "386") { $wp_obj=""; }
else { $cflags.=" -DWHIRLPOOL_ASM"; }
$cflags.=" -DWHIRLPOOL_ASM";
}
else {
$wp_obj="wp_block.o";
}
# "Stringify" the C flags string. This permits it to be made part of a string
...
...
TABLE
浏览文件 @
4c5e19b6
...
...
@@ -215,7 +215,7 @@ $cast_obj = cx86-out.o
$rc4_obj = rx86-out.o
$rmd160_obj = rm86-out.o
$rc5_obj = r586-out.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-out.o
$dso_scheme = dlfcn
$shared_target= bsd-shared
$shared_cflag = -fPIC
...
...
@@ -243,7 +243,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme = dlfcn
$shared_target= bsd-shared
$shared_cflag = -fPIC
...
...
@@ -271,7 +271,7 @@ $cast_obj =
$rc4_obj = rc4-x86_64.o
$rmd160_obj =
$rc5_obj =
$wp_obj =
$wp_obj =
wp-x86_64.o
$dso_scheme = dlfcn
$shared_target= bsd-gcc-shared
$shared_cflag = -fPIC
...
...
@@ -299,7 +299,7 @@ $cast_obj = cx86-cof.o
$rc4_obj = rx86-cof.o
$rmd160_obj = rm86-cof.o
$rc5_obj = r586-cof.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-cof.o
$dso_scheme = dlfcn
$shared_target= cygwin-shared
$shared_cflag = -D_WINDLL
...
...
@@ -355,7 +355,7 @@ $cast_obj = cx86-out.o
$rc4_obj = rx86-out.o
$rmd160_obj = rm86-out.o
$rc5_obj = r586-out.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-out.o
$dso_scheme =
$shared_target=
$shared_cflag =
...
...
@@ -887,7 +887,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme = dlfcn
$shared_target= bsd-gcc-shared
$shared_cflag = -fPIC
...
...
@@ -1083,7 +1083,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme = dlfcn
$shared_target= bsd-shared
$shared_cflag = -fPIC
...
...
@@ -1279,7 +1279,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme =
$shared_target=
$shared_cflag =
...
...
@@ -1363,7 +1363,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme = dlfcn
$shared_target= linux-shared
$shared_cflag = -fPIC
...
...
@@ -1391,7 +1391,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme = dlfcn
$shared_target= linux-shared
$shared_cflag = -fPIC
...
...
@@ -1475,7 +1475,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme = dlfcn
$shared_target= linux-shared
$shared_cflag = -fPIC
...
...
@@ -1503,7 +1503,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme = dlfcn
$shared_target= linux-shared
$shared_cflag = -fPIC
...
...
@@ -1531,7 +1531,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme = dlfcn
$shared_target=
$shared_cflag =
...
...
@@ -1559,7 +1559,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme = dlfcn
$shared_target=
$shared_cflag =
...
...
@@ -1587,7 +1587,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme =
$shared_target=
$shared_cflag =
...
...
@@ -1727,7 +1727,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme = dlfcn
$shared_target= linux-shared
$shared_cflag =
...
...
@@ -1895,7 +1895,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme =
$shared_target=
$shared_cflag =
...
...
@@ -2371,7 +2371,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme = dlfcn
$shared_target= linux-shared
$shared_cflag = -fPIC
...
...
@@ -2679,7 +2679,7 @@ $cast_obj = cx86-out.o
$rc4_obj = rx86-out.o
$rmd160_obj = rm86-out.o
$rc5_obj = r586-out.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-out.o
$dso_scheme =
$shared_target=
$shared_cflag =
...
...
@@ -2707,7 +2707,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme = dlfcn
$shared_target= linux-shared
$shared_cflag = -fPIC
...
...
@@ -2791,7 +2791,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme = dlfcn
$shared_target= linux-shared
$shared_cflag = -KPIC
...
...
@@ -3015,7 +3015,7 @@ $cast_obj =
$rc4_obj = rc4-x86_64.o
$rmd160_obj =
$rc5_obj =
$wp_obj =
$wp_obj =
wp-x86_64.o
$dso_scheme = dlfcn
$shared_target= linux-shared
$shared_cflag = -fPIC
...
...
@@ -3071,7 +3071,7 @@ $cast_obj = cx86-cof.o
$rc4_obj = rx86-cof.o
$rmd160_obj = rm86-cof.o
$rc5_obj = r586-cof.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-cof.o
$dso_scheme = win32
$shared_target= cygwin-shared
$shared_cflag = -D_WINDLL -DOPENSSL_USE_APPLINK
...
...
@@ -3491,7 +3491,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme = dlfcn
$shared_target= svr3-shared
$shared_cflag = -Kpic
...
...
@@ -3519,7 +3519,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme = dlfcn
$shared_target= svr3-shared
$shared_cflag = -fPIC
...
...
@@ -3743,7 +3743,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme = dlfcn
$shared_target= solaris-shared
$shared_cflag = -fPIC
...
...
@@ -3855,7 +3855,7 @@ $cast_obj =
$rc4_obj = rc4-x86_64.o
$rmd160_obj =
$rc5_obj =
$wp_obj =
$wp_obj =
wp-x86_64.o
$dso_scheme = dlfcn
$shared_target= solaris-shared
$shared_cflag = -fPIC
...
...
@@ -4079,7 +4079,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme = dlfcn
$shared_target= svr5-shared
$shared_cflag = -Kpic
...
...
@@ -4107,7 +4107,7 @@ $cast_obj = cx86-elf.o
$rc4_obj = rx86-elf.o
$rmd160_obj = rm86-elf.o
$rc5_obj = r586-elf.o
$wp_obj =
$wp_obj =
wp_block.o w86mmx-elf.o
$dso_scheme = dlfcn
$shared_target= gnu-shared
$shared_cflag = -fPIC
...
...
crypto/whrlpool/Makefile
浏览文件 @
4c5e19b6
...
...
@@ -11,6 +11,8 @@ CFLAG=-g
MAKEFILE
=
Makefile
AR
=
ar r
WP_ASM_OBJ
=
wp_block.o
CFLAGS
=
$(INCLUDES)
$(CFLAG)
ASFLAGS
=
$(INCLUDES)
$(ASFLAG)
AFLAGS
=
$(ASFLAGS)
...
...
@@ -21,7 +23,7 @@ APPS=
LIB
=
$(TOP)
/libcrypto.a
LIBSRC
=
wp_dgst.c wp_block.c
LIBOBJ
=
wp_dgst.o
wp_block.o
$(WP_ASM_OBJ)
LIBOBJ
=
wp_dgst.o
$(WP_ASM_OBJ)
SRC
=
$(LIBSRC)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录