class MachO::LoadCommands::EncryptionInfoCommand

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

Public Instance Methods

to_h() click to toggle source

@return [Hash] a hash representation of this {EncryptionInfoCommand}

Calls superclass method MachO::LoadCommands::LoadCommand#to_h
# File lib/macho/load_commands.rb, line 1090
def to_h
  {
    "cryptoff" => cryptoff,
    "cryptsize" => cryptsize,
    "cryptid" => cryptid,
  }.merge super
end