/* See LICENSE file for copyright and license details. */ #include "libsha2.h" #include #include #include #include #include #include /** * Process a chunk using SHA-2 * * @param state The hashing state * @param chunk The data to process */ #if defined(__GNUC__) __attribute__((__nonnull__, __nothrow__)) #endif void libsha2_process(struct libsha2_state *restrict, const unsigned char *restrict);