Class: Lite::Encryption::Configuration
- Inherits:
-
Object
- Object
- Lite::Encryption::Configuration
- Defined in:
- lib/lite/encryption/configuration.rb
Instance Attribute Summary collapse
-
#secret_key_base ⇒ Object
Returns the value of attribute secret_key_base.
-
#secret_key_salt ⇒ Object
Returns the value of attribute secret_key_salt.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
rubocop:disable Metrics/LineLength.
Constructor Details
#initialize ⇒ Configuration
rubocop:disable Metrics/LineLength
11 12 13 14 |
# File 'lib/lite/encryption/configuration.rb', line 11 def initialize @secret_key_base = 'b912e83c02b44122e31809a7435bc91e2e48c88742365aaccb07283eeb0379909e9aa09d64fc27cb5f20c3f072cd69aacd57518916799c00d41d94c06c916f5c' @secret_key_salt = "\xD5\x8C\xB6\x14\xAC\xC7-&\xAEu\xDDj\x80/\xDF\x15\xD1\xB2\x13\x04\x85\b\x8F\xC6ZQ`Z\xC7\xD4q\xDE" end |
Instance Attribute Details
#secret_key_base ⇒ Object
Returns the value of attribute secret_key_base.
8 9 10 |
# File 'lib/lite/encryption/configuration.rb', line 8 def secret_key_base @secret_key_base end |
#secret_key_salt ⇒ Object
Returns the value of attribute secret_key_salt.
8 9 10 |
# File 'lib/lite/encryption/configuration.rb', line 8 def secret_key_salt @secret_key_salt end |