class CryptoCipher::CryptoBS64

Public Instance Methods

decode(args) click to toggle source
# File lib/cipher/crypto_cipher_bs64.rb, line 10
def decode(args)
    Base64.decode64(args)
end
encode(args) click to toggle source
# File lib/cipher/crypto_cipher_bs64.rb, line 6
def encode(args)
    Base64.encode64(args)
end