Module: Repim::Random
Overview
Handles generating random strings. If SecureRandom is installed it will default to this and use it instead. SecureRandom comes with ActiveSupport. So if you are using this in a rails app you should have this library.
Constant Summary collapse
- SecureRandom =
(::SecureRandom) && ::SecureRandom) || (defined?(::ActiveSupport::SecureRandom) && ::ActiveSupport::SecureRandom)
- FRIENDLY_CHARS =
("a".."z").to_a + ("A".."Z").to_a + ("0".."9").to_a
Instance Method Summary collapse
Instance Method Details
#friendly_token ⇒ Object
14 15 16 17 |
# File 'lib/repim/random.rb', line 14 def friendly_token # use base64url as defined by RFC4648 SecureRandom.base64(15).tr('+/=', '-_ ').strip.delete("\n") end |
#hex_token ⇒ Object
10 11 12 |
# File 'lib/repim/random.rb', line 10 def hex_token SecureRandom.hex(64) end |