Sha256: 11563100029d752d3ca9edb8a63746a6e6ca9bf5d526d48ffb7647e1fb25a868
Contents?: true
Size: 729 Bytes
Versions: 50
Compression:
Stored size: 729 Bytes
Contents
module Encryptor # Adds <tt>encrypt</tt> and <tt>decrypt</tt> methods to strings module String # Returns a new string containing the encrypted version of itself def encrypt(options = {}) Encryptor.encrypt(options.merge(:value => self)) end # Replaces the contents of a string with the encrypted version of itself def encrypt!(options ={}) replace encrypt(options) end # Returns a new string containing the decrypted version of itself def decrypt(options = {}) Encryptor.decrypt(options.merge(:value => self)) end # Replaces the contents of a string with the decrypted version of itself def decrypt!(options ={}) replace decrypt(options) end end end
Version data entries
50 entries across 50 versions & 3 rubygems