Class: Gibberish::AES::SJCL::Plaintext

Inherits:
SimpleDelegator
  • Object
show all
Defined in:
lib/gibberish/aes.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(str, adata) ⇒ Plaintext

Returns a new instance of Plaintext.



117
118
119
120
# File 'lib/gibberish/aes.rb', line 117

def initialize(str, adata)
  @adata = adata;
  super(str)
end

Instance Attribute Details

#adataObject (readonly)

Returns the value of attribute adata.



116
117
118
# File 'lib/gibberish/aes.rb', line 116

def adata
  @adata
end