hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 16f7d6b204656cafb68672507d224c579401ed6d
parent 7021bbb293930e2c7f3cecffc57aa872d09ae6d1
Author: Armin Preiml <apreiml@strohwolke.at>
Date:   Sun, 24 Apr 2022 10:20:37 +0200

crypto::aes: x86ni doesn't support parallel operations

Signed-off-by: Armin Preiml <apreiml@strohwolke.at>

Diffstat:
Mcrypto/aes/+x86_64/ni.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/aes/+x86_64/ni.ha b/crypto/aes/+x86_64/ni.ha @@ -28,7 +28,7 @@ export fn x86ni_available() bool = { export fn x86ni() x86ni_block = { return x86ni_block { blocksz = BLOCKSIZE, - nparallel = CT64_NPARALLEL, + nparallel = 1, encrypt = &x86ni_encrypt, decrypt = &x86ni_decrypt, finish = &x86ni_finish,