Lines Matching refs:shifted_message
363 const unsigned char *shifted_message; in sha256_update() local
378 shifted_message = message + rem_len; in sha256_update()
381 sha256_transf(ctx, shifted_message, block_nb); in sha256_update()
385 memcpy(ctx->block, &shifted_message[block_nb << 6], in sha256_update()
560 const unsigned char *shifted_message; in sha512_update() local
575 shifted_message = message + rem_len; in sha512_update()
578 sha512_transf(ctx, shifted_message, block_nb); in sha512_update()
582 memcpy(ctx->block, &shifted_message[block_nb << 7], in sha512_update()
662 const unsigned char *shifted_message; in sha384_update() local
677 shifted_message = message + rem_len; in sha384_update()
680 sha512_transf(ctx, shifted_message, block_nb); in sha384_update()
684 memcpy(ctx->block, &shifted_message[block_nb << 7], in sha384_update()
762 const unsigned char *shifted_message; in sha224_update() local
777 shifted_message = message + rem_len; in sha224_update()
780 sha256_transf(ctx, shifted_message, block_nb); in sha224_update()
784 memcpy(ctx->block, &shifted_message[block_nb << 6], in sha224_update()