Sha256: 1bdec6b0228baf03c729490eb5dadf03bfa733341267128142ca4cc96de1db67

Contents?: true

Size: 819 Bytes

Versions: 49

Compression:

Stored size: 819 Bytes

Contents

# frozen_string_literal: true

require "securerandom"

module SecureRandom
  BASE58_ALPHABET = ("0".."9").to_a + ("A".."Z").to_a + ("a".."z").to_a - ["0", "O", "I", "l"]
  # SecureRandom.base58 generates a random base58 string.
  #
  # The argument _n_ specifies the length, of the random string to be generated.
  #
  # If _n_ is not specified or is +nil+, 16 is assumed. It may be larger in the future.
  #
  # The result may contain alphanumeric characters except 0, O, I and l
  #
  #   p SecureRandom.base58 # => "4kUgL2pdQMSCQtjE"
  #   p SecureRandom.base58(24) # => "77TMHrHJFvFDwodq8w7Ev2m7"
  #
  def self.base58(n = 16)
    SecureRandom.random_bytes(n).unpack("C*").map do |byte|
      idx = byte % 64
      idx = SecureRandom.random_number(58) if idx >= 58
      BASE58_ALPHABET[idx]
    end.join
  end
end

Version data entries

49 entries across 49 versions & 8 rubygems

Version Path
activesupport-5.2.8.1 lib/active_support/core_ext/securerandom.rb
activesupport-5.2.8 lib/active_support/core_ext/securerandom.rb
activesupport-5.2.7.1 lib/active_support/core_ext/securerandom.rb
activesupport-5.2.7 lib/active_support/core_ext/securerandom.rb
activesupport-5.2.6.3 lib/active_support/core_ext/securerandom.rb
activesupport-5.2.6.2 lib/active_support/core_ext/securerandom.rb
activesupport-5.2.6.1 lib/active_support/core_ext/securerandom.rb
activesupport-5.2.6 lib/active_support/core_ext/securerandom.rb
activesupport-5.2.4.6 lib/active_support/core_ext/securerandom.rb
activesupport-5.2.5 lib/active_support/core_ext/securerandom.rb
activesupport-5.2.4.5 lib/active_support/core_ext/securerandom.rb
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.4.1/lib/active_support/core_ext/securerandom.rb
activesupport-5.2.4.4 lib/active_support/core_ext/securerandom.rb
activesupport-5.2.4.3 lib/active_support/core_ext/securerandom.rb
activesupport-5.2.4.2 lib/active_support/core_ext/securerandom.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/activesupport-5.2.4.1/lib/active_support/core_ext/securerandom.rb
activesupport-5.2.4.1 lib/active_support/core_ext/securerandom.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/securerandom.rb
activesupport-5.2.4 lib/active_support/core_ext/securerandom.rb
activesupport-5.2.4.rc1 lib/active_support/core_ext/securerandom.rb