aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/sparc/sparc64/multiarch/sha512-block.c
diff options
context:
space:
mode:
authorZack Weinberg <zack@owlfolio.org>2023-09-21 14:58:05 -0400
committerZack Weinberg <zack@owlfolio.org>2023-09-21 16:24:59 -0400
commit46e817c4982dfda6aaf6863c141b2e56cfc75acd (patch)
tree7adb7aafbfc6d34a79cb729babfb4786996f9ce2 /sysdeps/sparc/sparc64/multiarch/sha512-block.c
parent0a19410103c1c4890753596e294438786fa13a8c (diff)
downloadglibc-zack/remove-libcrypt.tar
glibc-zack/remove-libcrypt.tar.gz
glibc-zack/remove-libcrypt.tar.bz2
glibc-zack/remove-libcrypt.zip
Remove all of the remaining libcrypt code.zack/remove-libcrypt
Completing the removal of libcrypt, delete all of its actual code. This patch contains only file removals: git rm -r crypt git rm include/crypt.h git rm $(find sysdeps -name libcrypt.abilist) git rm $(find sysdeps -name fips-private.h) git rm $(find sysdeps -name 'md5-*' -o -name 'sha256-*' -o -name 'sha512-*') For this patch (not the earlier ones, I'd still be waiting) I ran the complete testsuite and found no *new* failures. 26 tests are failing on my machine due to probable environment issues, but they were all failing on trunk before I started making changes, and none of them appear to have anything to do with this patchset.
Diffstat (limited to 'sysdeps/sparc/sparc64/multiarch/sha512-block.c')
-rw-r--r--sysdeps/sparc/sparc64/multiarch/sha512-block.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/sysdeps/sparc/sparc64/multiarch/sha512-block.c b/sysdeps/sparc/sparc64/multiarch/sha512-block.c
deleted file mode 100644
index 2863e05d09..0000000000
--- a/sysdeps/sparc/sparc64/multiarch/sha512-block.c
+++ /dev/null
@@ -1,32 +0,0 @@
-#include <sparc-ifunc.h>
-
-#define __sha512_process_block __sha512_process_block_generic
-extern void __sha512_process_block_generic (const void *buffer, size_t len,
- struct sha512_ctx *ctx);
-
-#include <crypt/sha512-block.c>
-
-#undef __sha512_process_block
-
-extern void __sha512_process_block_crop (const void *buffer, size_t len,
- struct sha512_ctx *ctx);
-
-static bool cpu_supports_sha512(int hwcap)
-{
- unsigned long cfr;
-
- if (!(hwcap & HWCAP_SPARC_CRYPTO))
- return false;
-
- __asm__ ("rd %%asr26, %0" : "=r" (cfr));
- if (cfr & (1 << 6))
- return true;
-
- return false;
-}
-
-extern void __sha512_process_block (const void *buffer, size_t len,
- struct sha512_ctx *ctx);
-sparc_libc_ifunc (__sha512_process_block,
- cpu_supports_sha512(hwcap) ? __sha512_process_block_crop
- : __sha512_process_block_generic);