Sha256: 040849826a7ba40fb6bfa97751fe873ff1e9260ba9676d642739bb2bc3b5fe07

Contents?: true

Size: 301 Bytes

Versions: 1

Compression:

Stored size: 301 Bytes

Contents

# frozen_string_literal: true

module Covert
  #
  # Covert configuration
  #
  class Config
    attr_accessor :cipher_key, :cipher, :hmac_key, :hmac_digest

    def initialize
      @cipher_key = nil
      @cipher = 'AES-256-CBC'
      @hmac_key = nil
      @hmac_digest = 'SHA256'
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
covert-0.2.0 lib/covert/config.rb