class Pliney::MachO::CommonEncryptionInfoReader

Attributes

cryptid[R]
cryptoff[R]
cryptsize[R]

Public Instance Methods

parse() click to toggle source
Calls superclass method Pliney::MachO::CommonLCReader#parse
# File lib/pliney/macho.rb, line 485
def parse()
    super()
    @cryptoff = @fh.read_uint32le
    @cryptsize = @fh.read_uint32le
    @cryptid = @fh.read_uint32le
end