Lines Matching defs:block
47 /* Set that it's the last block we'll compress */
64 /* init xors IV with input parameter block and sets the output length */
82 /* Initialize the parameter block with default values */
123 * Initialize the hashing context with the given parameter block.
133 * Initialize the hashing context with the given parameter block and key.
141 /* Pad the key to form first data block */
143 uint8_t block[BLAKE2B_BLOCKBYTES] = {0};
145 memcpy(block, key, P->key_length);
146 ossl_blake2b_update(c, block, BLAKE2B_BLOCKBYTES);
147 OPENSSL_cleanse(block, BLAKE2B_BLOCKBYTES);
153 /* Permute the state while xoring in the block of data. */
169 * b) BLAK2b_Final uses it to process last block, always
176 * Since last block is always processed with separate call,
268 * don't know if last block in *this* call is last one "ever". This
284 * last complete block, it can be final one...