module Encryptor

def self.default_options

Run 'openssl list-cipher-commands' in your terminal to view a list all cipher algorithms that are supported on your platform

Defaults to { :algorithm => 'aes-256-cbc' }

The default options to use when calling the encrypt and decrypt methods
def self.default_options
  @default_options ||= { :algorithm => 'aes-256-cbc' }
end