Class: DecryptResult

Inherits:
Object
  • Object
show all
Defined in:
lib/ruby-common/v5/DecryptResult.rb

Instance Method Summary collapse

Constructor Details

#initializeDecryptResult

Returns a new instance of DecryptResult.



2
3
4
5
6
# File 'lib/ruby-common/v5/DecryptResult.rb', line 2

def initialize
  @method = nil
  @byte_buffer_map = {}
  @data = nil
end

Instance Method Details

#byte_buffer_mapObject



16
17
18
# File 'lib/ruby-common/v5/DecryptResult.rb', line 16

def byte_buffer_map
  @byte_buffer_map
end

#dataObject



20
21
22
# File 'lib/ruby-common/v5/DecryptResult.rb', line 20

def data
  @data
end

#data=(data) ⇒ Object



24
25
26
# File 'lib/ruby-common/v5/DecryptResult.rb', line 24

def data=(data)
  @data = data
end

#methodObject



8
9
10
# File 'lib/ruby-common/v5/DecryptResult.rb', line 8

def method
  @method
end

#method=(method) ⇒ Object



12
13
14
# File 'lib/ruby-common/v5/DecryptResult.rb', line 12

def method=(method)
  @method = method
end