Class: Sym::Data::WrapperStruct

Inherits:
Struct
  • Object
show all
Defined in:
lib/sym/data/wrapper_struct.rb

Constant Summary collapse

VERSION =
1

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(encrypted_data:, iv:, cipher_name:, salt: nil, version: VERSION, compress: Sym::Configuration.config.compression_enabled) ⇒ WrapperStruct

Returns a new instance of WrapperStruct.



25
26
27
28
29
30
31
32
33
34
# File 'lib/sym/data/wrapper_struct.rb', line 25

def initialize(
  encrypted_data:,
  iv:,
  cipher_name:,
  salt: nil,
  version: VERSION,
  compress: Sym::Configuration.config.compression_enabled
)
  super(encrypted_data, iv, cipher_name, salt, version, compress)
end

Instance Attribute Details

#cipher_nameObject

Returns the value of attribute cipher_name

Returns:

  • (Object)

    the current value of cipher_name



4
5
6
# File 'lib/sym/data/wrapper_struct.rb', line 4

def cipher_name
  @cipher_name
end

#compressObject

Returns the value of attribute compress

Returns:

  • (Object)

    the current value of compress



4
5
6
# File 'lib/sym/data/wrapper_struct.rb', line 4

def compress
  @compress
end

#compressedObject

Returns the value of attribute compressed.



23
24
25
# File 'lib/sym/data/wrapper_struct.rb', line 23

def compressed
  @compressed
end

#encrypted_dataObject

Returns the value of attribute encrypted_data

Returns:

  • (Object)

    the current value of encrypted_data



4
5
6
# File 'lib/sym/data/wrapper_struct.rb', line 4

def encrypted_data
  @encrypted_data
end

#ivObject

Returns the value of attribute iv

Returns:

  • (Object)

    the current value of iv



4
5
6
# File 'lib/sym/data/wrapper_struct.rb', line 4

def iv
  @iv
end

#saltObject

Returns the value of attribute salt

Returns:

  • (Object)

    the current value of salt



4
5
6
# File 'lib/sym/data/wrapper_struct.rb', line 4

def salt
  @salt
end

#versionObject

Returns the value of attribute version

Returns:

  • (Object)

    the current value of version



4
5
6
# File 'lib/sym/data/wrapper_struct.rb', line 4

def version
  @version
end

Class Method Details

.deserialize(data) ⇒ Object



44
45
46
# File 'lib/sym/data/wrapper_struct.rb', line 44

def self.deserialize(data)
  Marshal.load(data)
end

Instance Method Details

#configObject



36
37
38
# File 'lib/sym/data/wrapper_struct.rb', line 36

def config
  Sym::Configuration.config
end

#serializeObject



40
41
42
# File 'lib/sym/data/wrapper_struct.rb', line 40

def serialize
  Marshal.dump(self)
end