6 lines
102 B
Ruby
6 lines
102 B
Ruby
|
require 'securerandom'
|
||
|
|
||
|
passwd = SecureRandom.urlsafe_base64(15)
|
||
|
|
||
|
puts "your password: [[#{passwd}]]"
|