mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
crypt: Use internal names for the SHA-2 block functions
These functions are externally visible with a static libcrypt library.
This commit is contained in:
@ -3,7 +3,7 @@
|
||||
/* Process LEN bytes of BUFFER, accumulating context into CTX.
|
||||
It is assumed that LEN % 128 == 0. */
|
||||
void
|
||||
sha512_process_block (const void *buffer, size_t len, struct sha512_ctx *ctx)
|
||||
__sha512_process_block (const void *buffer, size_t len, struct sha512_ctx *ctx)
|
||||
{
|
||||
const uint64_t *words = buffer;
|
||||
size_t nwords = len / sizeof (uint64_t);
|
||||
|
Reference in New Issue
Block a user