module MathCaptcha::Utils
Public Class Methods
generate_key(*args)
click to toggle source
# File lib/math_captcha/utils.rb, line 5 def self.generate_key(*args) args << 'math-captcha' Digest::SHA1.hexdigest(args.join) end