Class: Tins::Token
Overview
A secure token generator that creates cryptographically safe strings using customizable alphabets and random number generators.
Constant Summary collapse
- DEFAULT_ALPHABET =
Default alphabet for token generation
"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ".freeze
- BASE64_ALPHABET =
Base64 alphabet
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".freeze
- BASE64_URL_FILENAME_SAFE_ALPHABET =
URL-safe base64 alphabet
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_".freeze
- BASE32_ALPHABET =
Base32 alphabet
"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567".freeze
- BASE32_EXTENDED_HEX_ALPHABET =
Extended hex base32 alphabet
"0123456789ABCDEFGHIJKLMNOPQRSTUV".freeze
- BASE16_UPPERCASE_ALPHABET =
Base16 uppercase alphabet
"0123456789ABCDEF".freeze
- BASE16_LOWERCASE_ALPHABET =
Base16 lowercase alphabet
"0123456789abcdef".freeze
- BASE16_ALPHABET =
Base16 default alphabet (uppercase)
BASE16_UPPERCASE_ALPHABET
Instance Attribute Summary collapse
-
#bits ⇒ Integer
The bit length of the token.
Instance Method Summary collapse
-
#initialize(bits: 128, length: nil, alphabet: DEFAULT_ALPHABET, random: SecureRandom) ⇒ Tins::Token
constructor
Initializes a new Token instance with specified bit length, length, alphabet, and random number generator.
Constructor Details
#initialize(bits: 128, length: nil, alphabet: DEFAULT_ALPHABET, random: SecureRandom) ⇒ Tins::Token
Initializes a new Token instance with specified bit length, length, alphabet, and random number generator.
76 77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/tins/token.rb', line 76 def initialize(bits: 128, length: nil, alphabet: DEFAULT_ALPHABET, random: SecureRandom) alphabet.size > 1 or raise ArgumentError, 'need at least 2 symbols in alphabet' if length length > 0 or raise ArgumentError, 'length has to be positive' else bits > 0 or raise ArgumentError, 'bits has to be positive' length = (Math.log(1 << bits) / Math.log(alphabet.size)).ceil end self.bits = (Math.log(alphabet.size ** length) / Math.log(2)).floor token = +'' length.times { token << alphabet[random.random_number(alphabet.size)] } super token end |
Instance Attribute Details
#bits ⇒ Integer
The bit length of the token.
93 94 95 |
# File 'lib/tins/token.rb', line 93 def bits @bits end |