Home
last modified time | relevance | path

Searched refs:sha512_update (Results 1 – 8 of 8) sorted by relevance

/openbmc/linux/arch/arm64/crypto/
H A Dsha512-glue.c32 static int sha512_update(struct shash_desc *desc, const u8 *data, in sha512_update() function
58 .update = sha512_update,
70 .update = sha512_update,
/openbmc/linux/arch/x86/crypto/
H A Dsha512_ssse3_glue.c45 static int sha512_update(struct shash_desc *desc, const u8 *data, in sha512_update() function
85 return sha512_update(desc, data, len, sha512_transform_ssse3); in sha512_ssse3_update()
161 return sha512_update(desc, data, len, sha512_transform_avx); in sha512_avx_update()
227 return sha512_update(desc, data, len, sha512_transform_rorx); in sha512_avx2_update()
/openbmc/u-boot/include/u-boot/
H A Dsha512.h22 void sha512_update(sha512_context *ctx, const uint8_t *input, uint32_t length);
/openbmc/u-boot/lib/
H A Dsha512.c336 void sha512_update(sha512_context *ctx, const uint8_t *input, uint32_t length) in sha512_update() function
373 sha512_update(&ctx, curr, chunk); in sha512_csum_wd()
378 sha512_update(&ctx, input, ilen); in sha512_csum_wd()
H A Dtpm-v2.c114 sha512_update(&ctx_512, input, length); in tcg2_create_digest()
/openbmc/qemu/crypto/
H A Dhash-nettle.c92 .write = (qcrypto_nettle_write)sha512_update,
/openbmc/qemu/tests/tcg/multiarch/
H A Dsha512.c198 void sha512_update(struct sha512_ctx *ctx, const void *p, size_t size);
421 void sha512_update(struct sha512_ctx *ctx, const void *p, size_t size) in sha512_update() function
449 sha512_update(&ctx, p, size); in sha512()
/openbmc/u-boot/common/
H A Dhash.c129 sha512_update((sha512_context *)ctx, buf, size); in hash_update_sha512()