module Origami::Encryption::Identity
Identity transformation.
Public Class Methods
decrypt(key, data)
click to toggle source
# File lib/origami/encryption.rb, line 543 def Identity.decrypt(key, data) data end
encrypt(key, data)
click to toggle source
# File lib/origami/encryption.rb, line 539 def Identity.encrypt(key, data) data end