view bin/randstr @ 719:bcdf320dabf4 default tip

Rewrite the ed2k again in php Getting openssl to hash md4 is a pain.
author nanaya <me@nanaya.net>
date Sun, 10 Dec 2023 00:35:22 +0900
parents ecff9d2c0500
children
line wrap: on
line source

#!/usr/bin/env ruby

require "securerandom"

def random_base62(length)
  group = ["A".."Z", "a".."z", "0".."9"].map(&:to_a).flatten

  length.times.map do |x|
    group[SecureRandom.random_number(group.length)]
  end.join
end

length = ARGV[0].to_i
length = 12 if length <= 0

puts random_base62(length)