Home
last modified time | relevance | path

Searched refs:obuf (Results 1 – 5 of 5) sorted by relevance

/u-boot/drivers/crypto/hash/
A Dhash_sw.c32 *((uint16_t *)obuf) = *((uint16_t *)ctx); in hash_finish_crc16_ccitt()
48 *((uint32_t *)obuf) = *((uint32_t *)ctx); in hash_finish_crc32()
64 MD5Final(obuf, (struct MD5Context *)ctx); in hash_finish_md5()
80 sha1_finish((sha1_context *)ctx, obuf); in hash_finish_sha1()
96 sha256_finish((sha256_context *)ctx, obuf); in hash_finish_sha256()
112 sha384_finish((sha512_context *)ctx, obuf); in hash_finish_sha384()
128 sha512_finish((sha512_context *)ctx, obuf); in hash_finish_sha512()
139 void (*finish)(void *ctx, void *obuf);
236 void *obuf, uint32_t chunk_sz) in sw_hash_digest_wd() argument
269 rc = sw_hash_finish(dev, ctx, obuf); in sw_hash_digest_wd()
[all …]
A Dhash-uclass.c66 void *obuf) in hash_digest() argument
73 return ops->hash_digest(dev, algo, ibuf, ilen, obuf); in hash_digest()
78 void *obuf, uint32_t chunk_sz) in hash_digest_wd() argument
85 return ops->hash_digest_wd(dev, algo, ibuf, ilen, obuf, chunk_sz); in hash_digest_wd()
108 int hash_finish(struct udevice *dev, void *ctx, void *obuf) in hash_finish() argument
115 return ops->hash_finish(dev, ctx, obuf); in hash_finish()
/u-boot/include/u-boot/
A Dhash.h30 void *obuf);
33 void *obuf, uint32_t chunk_sz);
36 int hash_finish(struct udevice *dev, void *ctx, void *obuf);
48 int (*hash_finish)(struct udevice *dev, void *ctx, void *obuf);
53 void *obuf);
58 void *obuf, uint32_t chunk_sz);
/u-boot/drivers/crypto/aspeed/
A Daspeed_hace.c209 static int aspeed_hace_finish(struct udevice *dev, void *ctx, void *obuf) in aspeed_hace_finish() argument
270 memcpy(obuf, hace_ctx->digest, hash_algo_digest_size(hace_ctx->algo)); in aspeed_hace_finish()
280 void *obuf, uint32_t chunk_sz) in aspeed_hace_digest_wd() argument
313 rc = aspeed_hace_finish(dev, ctx, obuf); in aspeed_hace_digest_wd()
322 void *obuf) in aspeed_hace_digest() argument
325 return aspeed_hace_digest_wd(dev, algo, ibuf, ilen, obuf, ilen); in aspeed_hace_digest()
/u-boot/include/linux/soc/ti/
A Dcppi5.h480 dma_addr_t obuf, u32 obuf_len) in cppi5_hdesc_attach_buf() argument
483 WARN_ON(!buf && !obuf); in cppi5_hdesc_attach_buf()
487 desc->org_buf_ptr = obuf; in cppi5_hdesc_attach_buf()
492 dma_addr_t *obuf, u32 *obuf_len) in cppi5_hdesc_get_obuf() argument
495 WARN_ON(!obuf); in cppi5_hdesc_get_obuf()
498 *obuf = desc->org_buf_ptr; in cppi5_hdesc_get_obuf()

Completed in 18 milliseconds