mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-29 21:27:13 +09:00
This function definition was created by an automated script that incorrectly handled a corner case.
17 lines
322 B
C
17 lines
322 B
C
#include "crypto_hashblocks_sha512.h"
|
|
|
|
size_t
|
|
crypto_hashblocks_sha512_statebytes(void) {
|
|
return crypto_hashblocks_sha512_STATEBYTES;
|
|
}
|
|
|
|
size_t
|
|
crypto_hashblocks_sha512_blockbytes(void) {
|
|
return crypto_hashblocks_sha512_BLOCKBYTES;
|
|
}
|
|
|
|
const char *
|
|
crypto_hashblocks_sha512_primitive(void) {
|
|
return "sha512";
|
|
}
|