Module: AsyncTask::NullEncryptor

Defined in:
lib/async_task/null_encryptor.rb

Class Method Summary collapse

Class Method Details

.decrypt(content) ⇒ Object



5
6
7
# File 'lib/async_task/null_encryptor.rb', line 5

def decrypt(content)
  content
end

.encrypt(content) ⇒ Object



9
10
11
# File 'lib/async_task/null_encryptor.rb', line 9

def encrypt(content)
  content
end