crypto/aes/asm/aes-s390x.pl: replace decrypt flag by macro.
Signed-off-by: Patrick Steuer <patrick.steuer@de.ibm.com> Reviewed-by: Andy Polyakov <appro@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4634)
This commit is contained in:
parent
1c3a23e446
commit
e21a84308c
1 changed files with 2 additions and 2 deletions
|
@ -1086,7 +1086,7 @@ $code.=<<___ if (!$softonly);
|
|||
lhi $t1,16
|
||||
cr $t0,$t1
|
||||
jl .Lgo
|
||||
oill $t0,0x80 # set "decrypt" bit
|
||||
oill $t0,S390X_DECRYPT # set "decrypt" bit
|
||||
st $t0,240($key)
|
||||
br $ra
|
||||
___
|
||||
|
@ -1225,7 +1225,7 @@ $code.=<<___ if (!$softonly);
|
|||
.align 16
|
||||
.Lkmc_truncated:
|
||||
ahi $key,-1 # it's the way it's encoded in mvc
|
||||
tmll %r0,0x80
|
||||
tmll %r0,S390X_DECRYPT
|
||||
jnz .Lkmc_truncated_dec
|
||||
lghi %r1,0
|
||||
stg %r1,16*$SIZE_T($sp)
|
||||
|
|
Loading…
Reference in a new issue