Class: Secret
- Inherits:
-
Object
- Object
- Secret
- Defined in:
- lib/simple_crypt.rb
Overview
stores secret info as a class
Instance Attribute Summary collapse
-
#auth_data ⇒ Object
Returns the value of attribute auth_data.
-
#auth_tag ⇒ Object
Returns the value of attribute auth_tag.
-
#iv ⇒ Object
Returns the value of attribute iv.
-
#salt ⇒ Object
Returns the value of attribute salt.
-
#secret_data ⇒ Object
Returns the value of attribute secret_data.
Instance Attribute Details
#auth_data ⇒ Object
Returns the value of attribute auth_data.
7 8 9 |
# File 'lib/simple_crypt.rb', line 7 def auth_data @auth_data end |
#auth_tag ⇒ Object
Returns the value of attribute auth_tag.
7 8 9 |
# File 'lib/simple_crypt.rb', line 7 def auth_tag @auth_tag end |
#iv ⇒ Object
Returns the value of attribute iv.
7 8 9 |
# File 'lib/simple_crypt.rb', line 7 def iv @iv end |
#salt ⇒ Object
Returns the value of attribute salt.
7 8 9 |
# File 'lib/simple_crypt.rb', line 7 def salt @salt end |
#secret_data ⇒ Object
Returns the value of attribute secret_data.
7 8 9 |
# File 'lib/simple_crypt.rb', line 7 def secret_data @secret_data end |