Class: Gibberish::AES::SJCL::Plaintext
- Inherits:
-
SimpleDelegator
- Object
- SimpleDelegator
- Gibberish::AES::SJCL::Plaintext
- Defined in:
- lib/ext/aes_crypt.rb
Instance Attribute Summary collapse
-
#adata ⇒ Object
readonly
Returns the value of attribute adata.
Instance Method Summary collapse
-
#initialize(str, adata) ⇒ Plaintext
constructor
A new instance of Plaintext.
Constructor Details
#initialize(str, adata) ⇒ Plaintext
Returns a new instance of Plaintext.
42 43 44 45 |
# File 'lib/ext/aes_crypt.rb', line 42 def initialize(str, adata) @adata = adata; super(str) end |
Instance Attribute Details
#adata ⇒ Object (readonly)
Returns the value of attribute adata.
41 42 43 |
# File 'lib/ext/aes_crypt.rb', line 41 def adata @adata end |