Home
last modified time | relevance | path

Searched refs:crypto_dev (Results 1 – 2 of 2) sorted by relevance

/rk3399_rockchip-uboot/lib/avb/libavb/
H A Davb_sha512.c142 ctx->crypto_dev = crypto_get_device(ctx->crypto_ctx.algo); in avb_sha512_init()
144 if (ctx->crypto_dev) { in avb_sha512_init()
145 crypto_sha_init(ctx->crypto_dev, &ctx->crypto_ctx); in avb_sha512_init()
339 if (ctx->crypto_dev) { in avb_sha512_update()
340 crypto_sha_update(ctx->crypto_dev, (u32 *)data, len); in avb_sha512_update()
379 if (ctx->crypto_dev) { in avb_sha512_final()
380 crypto_sha_final(ctx->crypto_dev, &ctx->crypto_ctx, ctx->buf); in avb_sha512_final()
/rk3399_rockchip-uboot/include/android_avb/
H A Davb_sha.h75 struct udevice *crypto_dev; member