module SecurizeString::CipherMethods

Adds methods for OpenSSL::Cipher support including AES encryption. See CipherMethods::ClassMethods and CipherMethods::InstanceMethods for more details.

Public Class Methods

included(mod) click to toggle source
# File lib/securize_string/cipher_methods.rb, line 8
def self.included(mod)
  mod.send(:extend, ClassMethods)
  mod.send(:include, InstanceMethods)
end