# File lib/puppet/type/file/checksum.rb, line 27
27:   def sum_stream(&block)
28:     type = value || :md5 # same comment as above
29:     method = type.to_s + "_stream"
30:     checksum = send(method, &block)
31:     "{#{type}}#{checksum}"
32:   end