るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.019秒)
トップページ > クエリ:sec[x] > クエリ:urlsafe_base64[x]

別のキーワード

  1. base64 urlsafe_decode64
  2. base64 urlsafe_encode64
  3. securerandom urlsafe_base64
  4. urlsafe_decode64 base64
  5. urlsafe_encode64 base64

ライブラリ

モジュール

検索結果

SecureRandom.urlsafe_base64(n = nil, padding = false) -> String (21125.0)

ランダムで URL-safe な base64 文字列を生成して返します。

...'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 Secu...