# File tar.rb, line 183
183:     def compute_checksum
184:       sum = 0
185:       to_s( true ).each_byte { |b| sum += b }
186:       return sum
187:     end