Created
August 9, 2011 12:20
-
-
Save rishav/1133897 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| >> ActiveSupport::SecureRandom.base64(10) | |
| => "Fa8ILYFgMA12LA==" | |
| >> ActiveSupport::SecureRandom.hex(6) | |
| => "82c82a15110a" | |
| >> ActiveSupport::SecureRandom.random_bytes(16) | |
| => "u[\205\326\2654\301;'\340\372\2539r\035\313" | |
| >> ActiveSupport::SecureRandom.random_number(5) | |
| => 0 |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
And thanks for letting me know, I probably wouldn't have factored this in until I encountered it somewhere :).