OLD | NEW |
(Empty) | |
| 1 # |
| 2 # AFL dictionary for TIFF images |
| 3 # ------------------------------ |
| 4 # |
| 5 # Just the basic, standard-originating sections; does not include vendor |
| 6 # extensions. |
| 7 # |
| 8 # Created by Michal Zalewski <lcamtuf@google.com> |
| 9 # |
| 10 |
| 11 header_ii="II*\x00" |
| 12 header_mm="MM\x00*" |
| 13 |
| 14 section_100="\x00\x01" |
| 15 section_101="\x01\x01" |
| 16 section_102="\x02\x01" |
| 17 section_103="\x03\x01" |
| 18 section_106="\x06\x01" |
| 19 section_107="\x07\x01" |
| 20 section_10D="\x0d\x01" |
| 21 section_10E="\x0e\x01" |
| 22 section_10F="\x0f\x01" |
| 23 section_110="\x10\x01" |
| 24 section_111="\x11\x01" |
| 25 section_112="\x12\x01" |
| 26 section_115="\x15\x01" |
| 27 section_116="\x16\x01" |
| 28 section_117="\x17\x01" |
| 29 section_11A="\x1a\x01" |
| 30 section_11B="\x1b\x01" |
| 31 section_11C="\x1c\x01" |
| 32 section_11D="\x1d\x01" |
| 33 section_11E="\x1e\x01" |
| 34 section_11F="\x1f\x01" |
| 35 section_122="\"\x01" |
| 36 section_123="#\x01" |
| 37 section_124="$\x01" |
| 38 section_125="%\x01" |
| 39 section_128="(\x01" |
| 40 section_129=")\x01" |
| 41 section_12D="-\x01" |
| 42 section_131="1\x01" |
| 43 section_132="2\x01" |
| 44 section_13B=";\x01" |
| 45 section_13C="<\x01" |
| 46 section_13D="=\x01" |
| 47 section_13E=">\x01" |
| 48 section_13F="?\x01" |
| 49 section_140="@\x01" |
| 50 section_FE="\xfe\x00" |
| 51 section_FF="\xff\x00" |
OLD | NEW |