Mercurial > zeropaste
diff app/models/paste.rb @ 46:ba29d6394863
Use weaker digest to allow base62 url.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Thu, 04 Oct 2012 03:00:27 +0700 |
parents | a8cdf1f45446 |
children | 36d07f047ec2 |
line wrap: on
line diff
--- a/app/models/paste.rb Thu Oct 04 02:38:35 2012 +0700 +++ b/app/models/paste.rb Thu Oct 04 03:00:27 2012 +0700 @@ -6,7 +6,7 @@ validates :paste, :length => { :maximum => 1_000_000 } def set_paste_hash - self.paste_hash = Digest::SHA512.hexdigest("#{paste}\n") + self.paste_hash = Digest::SHA256.hexdigest("#{paste}\n") end def convert_newlines