A load command representing the offset to and size of an encrypted segment. Corresponds to LC_ENCRYPTION_INFO_64.
@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
@return [Fixnum] 64-bit padding value
@api private
# File lib/macho/load_commands.rb, line 1065 def initialize(view, cmd, cmdsize, cryptoff, cryptsize, cryptid, pad) super(view, cmd, cmdsize) @cryptoff = cryptoff @cryptsize = cryptsize @cryptid = cryptid @pad = pad end