Lines Matching refs:DELTA
87 DELTA = 1 # value to add to a byte to corrupt a section contents
253 def _modify_section(self, section, delta, body_or_sig=False,
257 If corrupt_all is set, the passed in delta is added to all bytes in the
258 section. Otherwise, the delta is added to the value located at 2% offset
262 delta value would restore the section contents.
282 blob_list = [('%c' % ((ord(x) + delta) % 0x100)) for x in blob]
286 ((ord(blob[modified_index]) + delta) % 0x100))
295 return self._modify_section(section, self.DELTA, body_or_sig=False,
301 return self._modify_section(section, self.DELTA, body_or_sig=True,
307 return self._modify_section(section, -self.DELTA, body_or_sig=False,
313 return self._modify_section(section, -self.DELTA, body_or_sig=True,