Symbol: HASH_CBLOCK
crypto/openssl/include/crypto/md32_common.h
174
if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
crypto/openssl/include/crypto/md32_common.h
175
memcpy(p + n, data, HASH_CBLOCK - n);
crypto/openssl/include/crypto/md32_common.h
177
n = HASH_CBLOCK - n;
crypto/openssl/include/crypto/md32_common.h
187
memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
crypto/openssl/include/crypto/md32_common.h
195
n = len / HASH_CBLOCK;
crypto/openssl/include/crypto/md32_common.h
198
n *= HASH_CBLOCK;
crypto/openssl/include/crypto/md32_common.h
224
if (n > (HASH_CBLOCK - 8)) {
crypto/openssl/include/crypto/md32_common.h
225
memset(p + n, 0, HASH_CBLOCK - n);
crypto/openssl/include/crypto/md32_common.h
229
memset(p + n, 0, HASH_CBLOCK - 8 - n);
crypto/openssl/include/crypto/md32_common.h
231
p += HASH_CBLOCK - 8;
crypto/openssl/include/crypto/md32_common.h
239
p -= HASH_CBLOCK;
crypto/openssl/include/crypto/md32_common.h
242
OPENSSL_cleanse(p, HASH_CBLOCK);
crypto/openssl/include/crypto/md32_common.h
76
#ifndef HASH_CBLOCK
sys/crypto/openssl/ossl_hash.h
117
if (n > (HASH_CBLOCK - 8)) {
sys/crypto/openssl/ossl_hash.h
118
memset(p + n, 0, HASH_CBLOCK - n);
sys/crypto/openssl/ossl_hash.h
122
memset(p + n, 0, HASH_CBLOCK - 8 - n);
sys/crypto/openssl/ossl_hash.h
124
p += HASH_CBLOCK - 8;
sys/crypto/openssl/ossl_hash.h
132
p -= HASH_CBLOCK;
sys/crypto/openssl/ossl_hash.h
135
OPENSSL_cleanse(p, HASH_CBLOCK);
sys/crypto/openssl/ossl_hash.h
70
if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
sys/crypto/openssl/ossl_hash.h
71
memcpy(p + n, data, HASH_CBLOCK - n);
sys/crypto/openssl/ossl_hash.h
73
n = HASH_CBLOCK - n;
sys/crypto/openssl/ossl_hash.h
83
memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
sys/crypto/openssl/ossl_hash.h
91
n = len / HASH_CBLOCK;
sys/crypto/openssl/ossl_hash.h
94
n *= HASH_CBLOCK;