module Sprockets::DigestUtils

def pack_hexdigest(bin)

Returns hex String.

bin - String bytes

Internal: Pack a binary digest to a hex encoded string.
def pack_hexdigest(bin)
  bin.unpack('H*').first
end