Symbol: SHA256_CBLOCK
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
102
res = SHA256_CBLOCK - res;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
110
res = len % SHA256_CBLOCK;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
114
sha256_block_data_order(c, ptr, len / SHA256_CBLOCK);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
431
sha_off = SHA256_CBLOCK - key->md.num;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
463
plen > (sha_off + iv) && (blocks = (plen - (sha_off + iv)) / SHA256_CBLOCK)) {
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
468
blocks *= SHA256_CBLOCK;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
522
unsigned char c[SHA256_CBLOCK];
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
563
if (len >= (256 + SHA256_CBLOCK)) {
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
564
j = (len - (256 + SHA256_CBLOCK)) & (0 - SHA256_CBLOCK);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
565
j += SHA256_CBLOCK - key->md.num;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
600
if (res != SHA256_CBLOCK)
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
619
for (i = res; i < SHA256_CBLOCK; i++, j++)
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
622
if (res > SHA256_CBLOCK - 8) {
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
636
memset(data, 0, SHA256_CBLOCK);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
679
inp_blocks = 1 + ((SHA256_CBLOCK - 9 - res) >> (sizeof(res) * 8 - 1));
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
681
pad_blocks = res / SHA256_CBLOCK;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
682
res %= SHA256_CBLOCK;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
683
pad_blocks += 1 + ((SHA256_CBLOCK - 9 - res) >> (sizeof(res) * 8 - 1));
crypto/openssl/crypto/evp/legacy_sha.c
112
SHA256_CBLOCK),
crypto/openssl/crypto/evp/legacy_sha.c
127
SHA256_CBLOCK),
crypto/openssl/crypto/sha/sha256.c
361
data += SHA256_CBLOCK;
crypto/openssl/engines/e_devcrypto.c
684
{ NID_sha224, SHA256_CBLOCK, 224 / 8, CRYPTO_SHA2_224 },
crypto/openssl/engines/e_devcrypto.c
687
{ NID_sha256, SHA256_CBLOCK, 256 / 8, CRYPTO_SHA2_256 },
crypto/openssl/engines/e_ossltest.c
135
|| !EVP_MD_meth_set_input_blocksize(md, SHA256_CBLOCK)
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
405
size_t sha_off = SHA256_CBLOCK - sctx->md.num;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
435
plen > (sha_off + iv) && (blocks = (plen - (sha_off + iv)) / SHA256_CBLOCK)) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
441
blocks *= SHA256_CBLOCK;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
494
unsigned char c[SHA256_CBLOCK];
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
535
if (len >= (256 + SHA256_CBLOCK)) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
536
j = (len - (256 + SHA256_CBLOCK)) & (0 - SHA256_CBLOCK);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
537
j += SHA256_CBLOCK - sctx->md.num;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
572
if (res != SHA256_CBLOCK)
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
591
for (i = res; i < SHA256_CBLOCK; i++, j++)
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
594
if (res > SHA256_CBLOCK - 8) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
608
memset(data, 0, SHA256_CBLOCK);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
79
res = SHA256_CBLOCK - res;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
87
res = len % SHA256_CBLOCK;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
91
sha256_block_data_order(c, ptr, len / SHA256_CBLOCK);
crypto/openssl/providers/implementations/digests/sha2_prov.c
67
SHA256_CBLOCK, SHA224_DIGEST_LENGTH, SHA2_FLAGS,
crypto/openssl/providers/implementations/digests/sha2_prov.c
72
SHA256_CBLOCK, SHA256_DIGEST_LENGTH, SHA2_FLAGS,
crypto/openssl/providers/implementations/digests/sha2_prov.c
77
SHA256_CBLOCK, SHA256_192_DIGEST_LENGTH, SHA2_FLAGS,
crypto/openssl/test/evp_fetch_prov_test.c
174
&& TEST_int_eq(EVP_MD_get_block_size(md), SHA256_CBLOCK);