module Origami::Encryption::Identity

Identity transformation.

Public Class Methods

decrypt(_key, data) click to toggle source
# File lib/origami/encryption.rb, line 517
def Identity.decrypt(_key, data)
    data
end
encrypt(_key, data) click to toggle source
# File lib/origami/encryption.rb, line 513
def Identity.encrypt(_key, data)
    data
end