Module: Quickbooks::Adapters::HttpsAdapter::SimpleEncryption

Defined in:
lib/quickbooks/adapters/https_adapter.rb

Overview

Whatever we do here, we just have to be sure that decrypt(encrypt(data)) == data

Instance Method Summary collapse

Instance Method Details

#decrypt(data) ⇒ Object



13
14
15
# File 'lib/quickbooks/adapters/https_adapter.rb', line 13

def decrypt(data)
  data
end

#encrypt(data) ⇒ Object



9
10
11
# File 'lib/quickbooks/adapters/https_adapter.rb', line 9

def encrypt(data)
  data
end