Class: Monerorequest::Pipeline::Base64Encoder

Inherits:
Object
  • Object
show all
Defined in:
lib/monerorequest/pipeline/base64_encoder.rb

Overview

pipeline that takes a string and base64 encodes it

Class Method Summary collapse

Class Method Details

.call(input) ⇒ Object



9
10
11
# File 'lib/monerorequest/pipeline/base64_encoder.rb', line 9

def self.call(input)
  Base64.strict_encode64(input)
end