aboutsummaryrefslogtreecommitdiff
path: root/lib/leap_cli/util/secret.rb
blob: 4833caaacf1e1c15f1b316d5270111b4a62a9f60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#
# A simple alphanumeric secret generator, with no ambiguous characters.
#
# It also includes symbols that are treated as word characters by most
# terminals (so you can still double click to select the entire secret).
#
# Uses OpenSSL random number generator instead of Ruby's rand function
#

require 'openssl'

module LeapCli; module Util

  class Secret

    CHARS = ('A'..'Z').to_a + ('a'..'z').to_a + ('0'..'9').to_a + "_-&@%~=+".split(//u) - "io01lO".split(//u)

    def self.generate(length = 10)
      seed
      OpenSSL::Random.random_bytes(length).bytes.to_a.collect { |byte|
        CHARS[ byte % CHARS.length ]
      }.join
    end

    def self.seed
      @pid ||= 0
      pid = $$
      if @pid != pid
        now = Time.now
        OpenSSL::Random.seed( [now.to_i, now.nsec, @pid, pid].join )
        @pid = pid
      end
    end

  end

end; end