Sha256: a0474824b98f0461b9e47529e02de367c993031f0bcc483dcfdc0e07c65f5c30
Contents?: true
Size: 717 Bytes
Versions: 28
Compression:
Stored size: 717 Bytes
Contents
module Alchemy # Provides methods to secure your picture attributes against DOS attacks. # class PictureAttributes SECURE_ATTRIBUTES = %w(id size crop crop_from crop_size quality).freeze class << self # Secures given attributes # # @param attributes [Hash] # @return [String] # def secure(attributes) Digest::SHA1.hexdigest(joined_attributes(attributes))[0..15] end private # Takes attributes and joins them with the +security_token+ of your rails app. # def joined_attributes(attributes) attributes.stringify_keys.values_at(*SECURE_ATTRIBUTES, Rails.configuration.secret_token).join('-') end end end end
Version data entries
28 entries across 28 versions & 1 rubygems