A load command representing the offset to and size of an encrypted segment. Corresponds to LC_ENCRYPTION_INFO.
@see MachOStructure::FORMAT @api private
@see MachOStructure::SIZEOF @api private
@return [Fixnum] the encryption system, or 0 if not encrypted yet
@return [Fixnum] the offset to the encrypted segment
@return [Fixnum] the size of the encrypted segment
@api private
# File lib/macho/load_commands.rb, line 1033 def initialize(view, cmd, cmdsize, cryptoff, cryptsize, cryptid) super(view, cmd, cmdsize) @cryptoff = cryptoff @cryptsize = cryptsize @cryptid = cryptid end