Home | History | Annotate | Download | only in cipher_extra

Lines Matching refs:block

33   block128_f block;
41 uint8_t block[SHA256_CBLOCK];
42 OPENSSL_memcpy(block, hmac_key, hmac_key_len);
43 OPENSSL_memset(block + hmac_key_len, 0x36, sizeof(block) - hmac_key_len);
47 block[i] ^= 0x36;
51 SHA256_Update(out_inner, block, sizeof(block));
53 OPENSSL_memset(block + hmac_key_len, 0x5c, sizeof(block) - hmac_key_len);
55 block[i] ^= (0x36 ^ 0x5c);
59 SHA256_Update(out_outer, block, sizeof(block));
94 aes_ctr_set_key(&aes_ctx->ks.ks, NULL, &aes_ctx->block, key, aes_key_len);
132 // Pad with zeros to the end of the SHA-256 block.
172 aes_ctx->block);
185 // This input is so large it would overflow the 32-bit block counter.