CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2026/08/25 07:57:18
Modified files:
lib/libc/arch/aarch64/hash: Makefile.inc
lib/libc/hash : sha1.c
lib/libc/hidden: sha1.h
Added files:
lib/libc/arch/aarch64/hash: sha1_aarch64.c sha1_aarch64_ce.S
Log message:
Provide assembly implementation of SHA-1 for aarch64 in libc
Provide a CE assembly implementation that can be used on hardware that
has the CE SHA-1 instructions. This is considerably faster than the
generic C implementation.
Largely borrowed from libcrypto.
With input from naddy@
ok naddy@ tb@