module Encryptor::String

def decrypt(options = {})

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