Home | History | Annotate | Download | only in avb

Lines Matching refs:root_digest_len

1242        root_digest_len, self.flags, _) = struct.unpack(self.FORMAT_STRING,
1245 self.SIZE - 16 + partition_name_len + salt_len + root_digest_len, 8)
1259 self.root_digest = data[(self.SIZE + o):(self.SIZE + o + root_digest_len)]
1260 if root_digest_len != len(hashlib.new(name=self.hash_algorithm).digest()):
1261 if root_digest_len != 0:
1262 raise LookupError('root_digest_len doesn\'t match hash algorithm')