Scroll to navigation

LIBKECCAK_KECCAKSUM_FD(3) Library Functions Manual LIBKECCAK_KECCAKSUM_FD(3)

NAME

libkeccak_keccaksum_fd - Calculate a Keccak hashsum of a file

SYNOPSIS

#include <libkeccak.h>
int libkeccak_keccaksum_fd(int fd, struct libkeccak_state *state, const struct libkeccak_spec *spec, void *hashsum);

Link with -lkeccak.

DESCRIPTION

The libkeccak_keccaksum_fd() function calculates a Keccak hashsum of a file, whose file desriptor is specified by fd (and should be at the beginning of the file.) The hash algorithm tuning is specified by *spec.

The hash is stored in binary form to hashsum. hashsum should have an allocation size of at least (((spec->output + 7) / 8) * sizeof(char)).

*state should not be initialised. libkeccak_keccaksum_fd() initialises *state itself. Therefore there would be a memory leak if *state is already initialised.

RETURN VALUES

The libkeccak_keccaksum_fd() function returns 0 upon successful completion. On error, -1 is returned and errno is set to describe the error.

ERRORS

The libkeccak_keccaksum_fd() function may fail for any reason, except those resulting in errno being set to EINTR, specified for the functions read(2), malloc(3), and realloc(3).

NOTES

Be aware, libkeccak_keccaksum_fd() hashes the file until the end has been reached. For pipes and sockets and this means until the file has been closed. But for character devices, this usually means never. Attempting to hash files in /dev is therefore usually a bad idea. libkeccak_keccaksum_fd() does not check for the file length or file type before hashing as this could limit what you can do, and make the library more complex.

libkeccak_keccaksum_fd() does not stop if interrupted (read(2) returns EINTR.)

libkeccak_keccaksum_fd() assumes all information is non-sensitive, and will therefore not perform any secure erasure of information.

libkeccak_keccaksum_fd() does not validate the tuning of the algorithm.

EXAMPLE

This example calculates the Keccak[b = 1024, c = 576, n = 256] hash of the input from stdin, and prints the hash, in hexadecimal form, to stdout.

struct libkeccak_state state;
struct libkeccak_spec spec;
char binhash[256 / 8];
char hexhash[256 / 8 * 2 + 1];
spec.bitrate = 1024;
spec.capacity = 576;
spec.output = 256;
if (libkeccak_keccaksum_fd(STDIN_FILENO, &state, &spec, binhash) < 0)
	goto fail;
libkeccak_behex_lower(hexhash, binhash, sizeof(binhash));
printf("%s\n", hexhash);
libkeccak_state_destroy(&state);

SEE ALSO

libkeccak_behex_lower(3), libkeccak_behex_upper(3), libkeccak_generalised_sum_fd(3), libkeccak_sha3sum_fd(3), libkeccak_rawshakesum_fd(3), libkeccak_shakesum_fd(3), libkeccak_spec_check(3), libkeccak_generalised_spec_initialise(3), libkeccak_state_initialise(3)

LIBKECCAK