Symbol: SHA_CBLOCK
crypto/libressl/crypto/engine/eng_openssl.c
363
.block_size = SHA_CBLOCK,
crypto/libressl/crypto/evp/e_aes_cbc_hmac_sha1.c
138
res = SHA_CBLOCK - res;
crypto/libressl/crypto/evp/e_aes_cbc_hmac_sha1.c
146
res = len % SHA_CBLOCK;
crypto/libressl/crypto/evp/e_aes_cbc_hmac_sha1.c
150
sha1_block_data_order(c, ptr, len / SHA_CBLOCK);
crypto/libressl/crypto/evp/e_aes_cbc_hmac_sha1.c
180
sha_off = SHA_CBLOCK - key->md.num;
crypto/libressl/crypto/evp/e_aes_cbc_hmac_sha1.c
199
(blocks = (plen - (sha_off + iv)) / SHA_CBLOCK)) {
crypto/libressl/crypto/evp/e_aes_cbc_hmac_sha1.c
204
blocks *= SHA_CBLOCK;
crypto/libressl/crypto/evp/e_aes_cbc_hmac_sha1.c
263
unsigned char c[SHA_CBLOCK];
crypto/libressl/crypto/evp/e_aes_cbc_hmac_sha1.c
301
if (len >= (256 + SHA_CBLOCK)) {
crypto/libressl/crypto/evp/e_aes_cbc_hmac_sha1.c
302
j = (len - (256 + SHA_CBLOCK)) &
crypto/libressl/crypto/evp/e_aes_cbc_hmac_sha1.c
303
(0 - SHA_CBLOCK);
crypto/libressl/crypto/evp/e_aes_cbc_hmac_sha1.c
304
j += SHA_CBLOCK - key->md.num;
crypto/libressl/crypto/evp/e_aes_cbc_hmac_sha1.c
337
if (res != SHA_CBLOCK)
crypto/libressl/crypto/evp/e_aes_cbc_hmac_sha1.c
355
for (i = res; i < SHA_CBLOCK; i++, j++)
crypto/libressl/crypto/evp/e_aes_cbc_hmac_sha1.c
358
if (res > SHA_CBLOCK - 8) {
crypto/libressl/crypto/evp/e_aes_cbc_hmac_sha1.c
371
memset(data, 0, SHA_CBLOCK);
crypto/libressl/crypto/evp/e_aes_cbc_hmac_sha1.c
408
inp_blocks = 1 + ((SHA_CBLOCK - 9 - res) >>
crypto/libressl/crypto/evp/e_aes_cbc_hmac_sha1.c
411
pad_blocks = res / SHA_CBLOCK;
crypto/libressl/crypto/evp/e_aes_cbc_hmac_sha1.c
412
res %= SHA_CBLOCK;
crypto/libressl/crypto/evp/e_aes_cbc_hmac_sha1.c
413
pad_blocks += 1 + ((SHA_CBLOCK - 9 - res) >>
crypto/libressl/crypto/evp/m_sha1.c
103
.block_size = SHA_CBLOCK,
crypto/libressl/crypto/sha/sha256.c
77
#define HASH_CBLOCK SHA_CBLOCK
crypto/libressl/crypto/sha/sha_locl.h
233
data += SHA_CBLOCK;
crypto/libressl/crypto/sha/sha_locl.h
69
#define HASH_CBLOCK SHA_CBLOCK
crypto/libressl/include/openssl/sha.h
89
#define SHA_LAST_BLOCK (SHA_CBLOCK-8)