summaryrefslogtreecommitdiffstats
path: root/crypto/aes
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2014-06-01 23:38:11 +0200
committerAndy Polyakov <appro@openssl.org>2014-06-01 23:38:11 +0200
commitde51e830a637862ecd86b1feb848312366072dd1 (patch)
tree909835b193e87e7d39daf8c06c24e6ef49ad783f /crypto/aes
parenta5510df3374a5bd21fa843d9d2b85924c2568756 (diff)
Engage POWER8 AES support.
Diffstat (limited to 'crypto/aes')
-rw-r--r--crypto/aes/Makefile2
-rwxr-xr-xcrypto/aes/asm/aesp8-ppc.pl2
2 files changed, 3 insertions, 1 deletions
diff --git a/crypto/aes/Makefile b/crypto/aes/Makefile
index 192464c9db..cd218c9d98 100644
--- a/crypto/aes/Makefile
+++ b/crypto/aes/Makefile
@@ -79,6 +79,8 @@ aes-ppc.s: asm/aes-ppc.pl
$(PERL) asm/aes-ppc.pl $(PERLASM_SCHEME) $@
vpaes-ppc.s: asm/vpaes-ppc.pl
$(PERL) asm/vpaes-ppc.pl $(PERLASM_SCHEME) $@
+aesp8-ppc.s: asm/aesp8-ppc.pl
+ $(PERL) asm/aesp8-ppc.pl $(PERLASM_SCHEME) $@
aes-parisc.s: asm/aes-parisc.pl
$(PERL) asm/aes-parisc.pl $(PERLASM_SCHEME) $@
diff --git a/crypto/aes/asm/aesp8-ppc.pl b/crypto/aes/asm/aesp8-ppc.pl
index b1da5965fb..31a260fc3c 100755
--- a/crypto/aes/asm/aesp8-ppc.pl
+++ b/crypto/aes/asm/aesp8-ppc.pl
@@ -49,7 +49,7 @@ die "can't locate ppc-xlate.pl";
open STDOUT,"| $^X $xlate $flavour ".shift || die "can't call $xlate: $!";
$FRAME=8*$SIZE_T;
-$prefix="AES";
+$prefix="aes_p8";
$sp="r1";
$vrsave="r12";