Home
last modified time | relevance | path

Searched refs:sha256_process_block (Results 1 – 1 of 1) sorted by relevance

/systemd-251/src/fundamental/
Dsha256.c76 static void sha256_process_block(const void *, size_t, struct sha256_ctx *);
121 sha256_process_block(ctx->buffer, bytes + pad + 8, ctx); in sha256_finish_ctx()
145 sha256_process_block(ctx->buffer, ctx->buflen & ~63, ctx); in sha256_process_bytes()
173 sha256_process_block(ctx->buffer, 64, ctx); in sha256_process_bytes()
180 sha256_process_block(buffer, len & ~63, ctx); in sha256_process_bytes()
193 sha256_process_block(ctx->buffer, 64, ctx); in sha256_process_bytes()
204 static void sha256_process_block(const void *buffer, size_t len, struct sha256_ctx *ctx) { in sha256_process_block() function