From 39f5b069ac4b0ccd953f2237b7a6c2018230726d Mon Sep 17 00:00:00 2001 From: Patrick Steuer Date: Thu, 18 Jan 2018 10:14:30 +0100 Subject: s390x assembly pack: add KMAC code path for aes-ccm Signed-off-by: Patrick Steuer Reviewed-by: Andy Polyakov Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/5230) --- crypto/s390xcpuid.pl | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'crypto/s390xcpuid.pl') diff --git a/crypto/s390xcpuid.pl b/crypto/s390xcpuid.pl index ea95dd286d..5f6ffc66d6 100755 --- a/crypto/s390xcpuid.pl +++ b/crypto/s390xcpuid.pl @@ -275,6 +275,27 @@ s390x_km: ___ } +################ +# void s390x_kmac(const unsigned char *in, size_t len, unsigned int fc, +# void *param) +{ +my ($in,$len,$fc,$param) = map("%r$_",(2..5)); +$code.=<<___; +.globl s390x_kmac +.type s390x_kmac,\@function +.align 16 +s390x_kmac: + lr %r0,$fc + l${g}r %r1,$param + + .long 0xb91e0002 # kmac %r0,$in + brc 1,.-4 # pay attention to "partial completion" + + br $ra +.size s390x_kmac,.-s390x_kmac +___ +} + ################ # void s390x_kma(const unsigned char *aad, size_t alen, # const unsigned char *in, size_t len, -- cgit v1.2.3