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

Inherits:
SimpleDelegator
  • Object
show all
Defined in:
lib/ext/aes_crypt.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#adataObject (readonly)

Returns the value of attribute adata.



41
42
43
# File 'lib/ext/aes_crypt.rb', line 41

def adata
  @adata
end