Searched refs:sha256_context (Results 1 – 13 of 13) sorted by relevance
| /u-boot/include/u-boot/ |
| A D | sha256.h | 16 } sha256_context; typedef 18 void sha256_starts(sha256_context * ctx); 19 void sha256_update(sha256_context *ctx, const uint8_t *input, uint32_t length); 20 void sha256_finish(sha256_context * ctx, uint8_t digest[SHA256_SUM_LEN]);
|
| /u-boot/arch/arm/cpu/armv8/ |
| A D | sha256_ce_glue.c | 14 void sha256_process(sha256_context *ctx, const unsigned char *data, in sha256_process()
|
| /u-boot/drivers/crypto/hash/ |
| A D | hash_sw.c | 86 sha256_starts((sha256_context *)ctx); in hash_init_sha256() 91 sha256_update((sha256_context *)ctx, ibuf, ilen); in hash_update_sha256() 96 sha256_finish((sha256_context *)ctx, obuf); in hash_finish_sha256() 176 .ctx_alloc_sz = sizeof(sha256_context),
|
| /u-boot/lib/crypt/ |
| A D | alg-sha256.h | 8 #define SHA256_CTX sha256_context
|
| /u-boot/lib/ |
| A D | sha256.c | 45 void sha256_starts(sha256_context * ctx) in sha256_starts() 60 static void sha256_process_one(sha256_context *ctx, const uint8_t data[64]) in sha256_process_one() 191 __weak void sha256_process(sha256_context *ctx, const unsigned char *data, in sha256_process() 203 void sha256_update(sha256_context *ctx, const uint8_t *input, uint32_t length) in sha256_update() 242 void sha256_finish(sha256_context * ctx, uint8_t digest[32]) in sha256_finish() 278 sha256_context ctx; in sha256_csum_wd()
|
| /u-boot/fs/btrfs/crypto/ |
| A D | hash.c | 24 sha256_context ctx; in hash_sha256()
|
| /u-boot/common/ |
| A D | hash.c | 75 sha256_context *ctx = malloc(sizeof(sha256_context)); in hash_init_sha256() 85 sha256_update((sha256_context *)ctx, buf, size); in hash_update_sha256() 95 sha256_finish((sha256_context *)ctx, dest_buf); in hash_finish_sha256()
|
| /u-boot/drivers/mmc/ |
| A D | rpmb.c | 191 sha256_context ctx; in rpmb_hmac()
|
| /u-boot/tools/ |
| A D | rkcommon.c | 289 sha256_context ctx; in do_sha256_hash()
|
| A D | mtk_image.c | 616 sha256_context ctx; in put_hash()
|
| /u-boot/drivers/tpm/ |
| A D | tpm2_tis_sandbox.c | 406 sha256_context ctx; in sandbox_tpm2_extend()
|
| /u-boot/cmd/mvebu/ |
| A D | bubt.c | 770 sha256_context hash256_text; in check_image_header()
|
| /u-boot/lib/efi_loader/ |
| A D | efi_tcg2.c | 670 sha256_context ctx_256; in tcg2_create_digest() 2211 sha256_context hash_ctx; in efi_tcg2_measure_dtb()
|
Completed in 35 milliseconds