Home
last modified time | relevance | path

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

/third_party/uboot/u-boot-2020.01/common/
Dimage-sig.c56 struct crypto_algo crypto_algos[] = { variable
128 for (i = 0; i < ARRAY_SIZE(crypto_algos); i++) { in image_get_crypto_algo()
129 crypto_algos[i].name += gd->reloc_off; in image_get_crypto_algo()
130 crypto_algos[i].sign += gd->reloc_off; in image_get_crypto_algo()
131 crypto_algos[i].add_verify_data += gd->reloc_off; in image_get_crypto_algo()
132 crypto_algos[i].verify += gd->reloc_off; in image_get_crypto_algo()
143 for (i = 0; i < ARRAY_SIZE(crypto_algos); i++) { in image_get_crypto_algo()
144 if (!strcmp(crypto_algos[i].name, name)) in image_get_crypto_algo()
145 return &crypto_algos[i]; in image_get_crypto_algo()