Home | History | Annotate | Download | only in libavb

Lines Matching defs:algorithm

40   const AvbAlgorithmData* algorithm;
154 /* Ensure algorithm field is supported. */
155 algorithm = avb_get_algorithm_data(h.algorithm_type);
156 if (!algorithm) {
157 avb_error("Invalid or unknown algorithm.\n");
161 /* Bail if the embedded hash size doesn't match the chosen algorithm. */
162 if (h.hash_size != algorithm->hash_len) {
199 avb_error("Unknown algorithm.\n");
218 algorithm->padding,
219 algorithm->padding_len);