Sha256: 7f28724e29c4ff3d9c06c901b9d72bc5cc61bcf099646f8ad975e7359a7c26eb

Contents?: true

Size: 189 Bytes

Versions: 4

Compression:

Stored size: 189 Bytes

Contents

module CookieMonster
  class Configuration
    attr_accessor :key, :cipher_type

    def initialize
      @cipher_type = 'AES-256-CBC'
    end

    def iv
      rand.to_s
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
cookie_monster-0.1.5 lib/cookie_monster/configuration.rb
cookie_monster-0.1.4 lib/cookie_monster/configuration.rb
cookie_monster-0.1.3 lib/cookie_monster/configuration.rb
cookie_monster-0.1.2 lib/cookie_monster/configuration.rb