module Encryptor::String

def encrypt(options = {})

Returns a new string containing the encrypted version of itself
def encrypt(options = {})
  Encryptor.encrypt(options.merge(:value => self))
end