Sha256: f229259d1647bbed39728b4aed171f8c4e33b745363023a71aae74b6f59683e1
Contents?: true
Size: 1.18 KB
Versions: 4
Compression:
Stored size: 1.18 KB
Contents
module Shhh # This class encapsulates application configuration, and exports # a familiar method +#configure+ for defining configuration in a # block. # # It's values are requested by the library upon encryption or # decryption, or any other operation. # # == Example # # The following is an actual initialization from the code of this # library. You may override any of the value defined below in your # code, but _before_ you _use_ library's encryption methods. # # Shhh::Configuration.configure do |config| # config.password_cipher = 'AES-128-CBC' # # config.data_cipher = 'AES-256-CBC' # config.private_key_cipher = config.data_cipher # config.compression_enabled = true # config.compression_level = Zlib::BEST_COMPRESSION # end class Configuration class << self attr_accessor :config def configure self.config ||= Configuration.new yield config if block_given? end def property(name) self.config.send(name) end end attr_accessor :data_cipher, :password_cipher, :private_key_cipher attr_accessor :compression_enabled, :compression_level end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
shhh-1.7.0 | lib/shhh/configuration.rb |
shhh-1.5.4 | lib/shhh/configuration.rb |
shhh-1.4.1 | lib/shhh/configuration.rb |
shhh-1.4.0 | lib/shhh/configuration.rb |