Symbol: sha256_update
crypto/libecc/include/libecc/hash/sha256.h
72
ATTRIBUTE_WARN_UNUSED_RET int sha256_update(sha256_context *ctx, const u8 *input, u32 ilen);
crypto/libecc/src/hash/hash_algs.c
171
return sha256_update((sha256_context*)hctx, chunk, chunklen);
crypto/libecc/src/hash/sha256.c
212
ret = sha256_update(&ctx, inputs[pos], ilens[pos]); EG(ret, err);
crypto/libecc/src/hash/sha256.c
228
ret = sha256_update(&ctx, input, ilen); EG(ret, err);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
130
#define SHA256_Update sha256_update
crypto/openssl/crypto/evp/legacy_sha.c
126
LEGACY_EVP_MD_METH_TABLE(sha256_init, sha256_update, sha256_final, NULL,
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
436
sha256_update(&sctx->md, in + iv, sha_off);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
452
sha256_update(&sctx->md, in + sha_off, plen - sha_off);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
461
sha256_update(&sctx->md, out + plen, SHA256_DIGEST_LENGTH);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
531
sha256_update(&sctx->md, ctx->aux.tls_aad, plen);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
538
sha256_update(&sctx->md, out, j);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
643
sha256_update(&sctx->md, pmac->c, SHA256_DIGEST_LENGTH);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
671
sha256_update(&sctx->md, out, len);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
691
sha256_update(&ctx->head, mackey, len);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
700
sha256_update(&ctx->head, hmac_key, sizeof(hmac_key));
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
705
sha256_update(&ctx->tail, hmac_key, sizeof(hmac_key));
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
734
sha256_update(&sctx->md, p, aad_len);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
785
sha256_update(&sctx->md, param->inp, 13);