Class: MachO::LoadCommands::EncryptionInfoCommand

Inherits:
LoadCommand show all
Defined in:
lib/macho/load_commands.rb

Overview

A load command representing the offset to and size of an encrypted segment. Corresponds to LC_ENCRYPTION_INFO.

Constant Summary collapse

FORMAT =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

See Also:

API:

  • private

"L=5".freeze
SIZEOF =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

See Also:

API:

  • private

20

Instance Attribute Summary collapse

Attributes inherited from LoadCommand

#cmd, #cmdsize, #view

Instance Method Summary collapse

Methods inherited from LoadCommand

create, new_from_bin, #offset, #serializable?, #serialize, #to_s, #type

Methods inherited from MachOStructure

bytesize, new_from_bin

Constructor Details

#initialize(view, cmd, cmdsize, cryptoff, cryptsize, cryptid) ⇒ EncryptionInfoCommand

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of EncryptionInfoCommand.

API:

  • private



1001
1002
1003
1004
1005
1006
# File 'lib/macho/load_commands.rb', line 1001

def initialize(view, cmd, cmdsize, cryptoff, cryptsize, cryptid)
  super(view, cmd, cmdsize)
  @cryptoff = cryptoff
  @cryptsize = cryptsize
  @cryptid = cryptid
end

Instance Attribute Details

#cryptidFixnum (readonly)

Returns the encryption system, or 0 if not encrypted yet.

Returns:

  • the encryption system, or 0 if not encrypted yet



990
991
992
# File 'lib/macho/load_commands.rb', line 990

def cryptid
  @cryptid
end

#cryptoffFixnum (readonly)

Returns the offset to the encrypted segment.

Returns:

  • the offset to the encrypted segment



984
985
986
# File 'lib/macho/load_commands.rb', line 984

def cryptoff
  @cryptoff
end

#cryptsizeFixnum (readonly)

Returns the size of the encrypted segment.

Returns:

  • the size of the encrypted segment



987
988
989
# File 'lib/macho/load_commands.rb', line 987

def cryptsize
  @cryptsize
end