Ruby 2.1.0 リファレンスマニュアル > ライブラリ一覧 > securerandomライブラリ > SecureRandomモジュール > urlsafe_base64
urlsafe_base64(n = nil, padding = false) -> String
[permalink][rdoc]ランダムで URL-safe な base64 文字列を生成して返します。
require 'securerandom' p SecureRandom.urlsafe_base64 #=> "b4GOKm4pOYU_-BOXcrUGDg" p SecureRandom.urlsafe_base64 #=> "UZLdOkzop70Ddx-IJR0ABg" p SecureRandom.urlsafe_base64(nil, true) #=> "i0XQ-7gglIsHGV2_BNPrdQ==" p SecureRandom.urlsafe_base64(nil, true) #=> "-M8rLhr7JEpJlqFGUMmOxg=="
[SEE_ALSO] SecureRandom.base64, [RFC3548]