LessSecureRandom
is an API compatible version of SecureRandom
, only a little
less secure and a little less random.
Add this line to your application's Gemfile:
gem 'less_secure_random'
And then execute:
bundle
Or install it yourself as:
gem install less_secure_random
LessSecureRandom.uuid
=> "fde6b9ac-c26f-458b-9892-c76ed1af3724"
then
LessSecureRandom.uuid
=> "fde6b9ac-c26f-458b-9892-c76ed1af3724"
LessSecureRandom.hex(32)
=> "f571395543cd680da47f44abf9815ea82d0b23eff0df54cf43765f7a21ef27ed"
then
LessSecureRandom.hex(32)
=> "f571395543cd680da47f44abf9815ea82d0b23eff0df54cf43765f7a21ef27ed"
- Fork it ( https://github.com/horribleideas/less_secure_random/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request