Class: Ccrypto::HMACConfig

Inherits:
Object
  • Object
show all
Includes:
AlgoConfig
Defined in:
lib/ccrypto/configs/hmac_config.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from AlgoConfig

include

Constructor Details

#initialize(digestConfig) ⇒ HMACConfig

Returns a new instance of HMACConfig.



13
14
15
# File 'lib/ccrypto/configs/hmac_config.rb', line 13

def initialize(digestConfig)
  @digest_config = digestConfig
end

Instance Attribute Details

#ccrypto_keyObject

Returns the value of attribute ccrypto_key.



7
8
9
# File 'lib/ccrypto/configs/hmac_config.rb', line 7

def ccrypto_key
  @ccrypto_key
end

#digest_configObject (readonly)

Returns the value of attribute digest_config.



9
10
11
# File 'lib/ccrypto/configs/hmac_config.rb', line 9

def digest_config
  @digest_config
end

#provider_configObject

Returns the value of attribute provider_config.



11
12
13
# File 'lib/ccrypto/configs/hmac_config.rb', line 11

def provider_config
  @provider_config
end