Lines Matching refs:parent
41 * information extracted from the parent image after its authentication.
72 * The parent image must contain:
82 * and parent image
97 /* Get the hash from the parent image. This hash will be DER encoded
99 rc = auth_get_param(param->hash, img_desc->parent,
139 * The parent image must contain:
143 * If the parent image contains only a hash of the key, we will try to obtain
147 * comparing it with the hash obtained from the parent.
149 * If the image has no parent (NULL), it means it has to be authenticated using
191 /* Get the public key from the parent. If there is no parent (NULL),
194 if (img_desc->parent != NULL) {
195 rc = auth_get_param(param->pk, img_desc->parent,
406 * Return the parent id in the output parameter '*parent_id'
409 * 0 = Image has parent, 1 = Image has no parent or parent is authenticated
419 /* Check if the image has no parent (ROT) */
420 if (img_desc->parent == NULL) {
425 /* Check if the parent has already been authenticated */
426 if (auth_img_flags[img_desc->parent->img_id] & IMG_FLAG_AUTHENTICATED) {
431 *parent_id = img_desc->parent->img_id;