Method: String#to_base64

Defined in:
lib/crypto_toolchain/extensions/string_extensions.rb

#to_base64(strict: true) ⇒ Object



35
36
37
38
39
40
41
# File 'lib/crypto_toolchain/extensions/string_extensions.rb', line 35

def to_base64(strict: true)
  if strict
    Base64.strict_encode64(self)
  else
    Base64.encode64(self)
  end
end