module Meshchat::Encryption::Passthrough

This should normally be for testing

It just retuns the message that is asked to be encrypted

Public Instance Methods

decrypt(msg, *_args) click to toggle source
# File lib/meshchat/encryption/passthrough.rb, line 14
def decrypt(msg, *_args)
  msg
end
encrypt(msg, *_args) click to toggle source
# File lib/meshchat/encryption/passthrough.rb, line 10
def encrypt(msg, *_args)
  msg
end