Class: MachO::EncryptionInfoCommand64
- Inherits:
-
LoadCommand
- Object
- MachOStructure
- LoadCommand
- MachO::EncryptionInfoCommand64
- Defined in:
- lib/macho/load_commands.rb
Instance Attribute Summary collapse
-
#cryptid ⇒ Object
readonly
Returns the value of attribute cryptid.
-
#cryptoff ⇒ Object
readonly
Returns the value of attribute cryptoff.
-
#cryptsize ⇒ Object
readonly
Returns the value of attribute cryptsize.
-
#pad ⇒ Object
readonly
Returns the value of attribute pad.
Attributes inherited from LoadCommand
Instance Method Summary collapse
-
#initialize(offset, cmd, cmdsize, cryptoff, cryptsize, cryptid) ⇒ EncryptionInfoCommand64
constructor
A new instance of EncryptionInfoCommand64.
Methods inherited from LoadCommand
Methods inherited from MachOStructure
Constructor Details
#initialize(offset, cmd, cmdsize, cryptoff, cryptsize, cryptid) ⇒ EncryptionInfoCommand64
522 523 524 525 526 527 528 |
# File 'lib/macho/load_commands.rb', line 522 def initialize(offset, cmd, cmdsize, cryptoff, cryptsize, cryptid) super(offset, cmd, cmdsize) @cryptoff = cryptoff @cryptsize = cryptsize @cryptid = cryptid @pad = pad end |
Instance Attribute Details
#cryptid ⇒ Object (readonly)
Returns the value of attribute cryptid.
517 518 519 |
# File 'lib/macho/load_commands.rb', line 517 def cryptid @cryptid end |
#cryptoff ⇒ Object (readonly)
Returns the value of attribute cryptoff.
517 518 519 |
# File 'lib/macho/load_commands.rb', line 517 def cryptoff @cryptoff end |
#cryptsize ⇒ Object (readonly)
Returns the value of attribute cryptsize.
517 518 519 |
# File 'lib/macho/load_commands.rb', line 517 def cryptsize @cryptsize end |
#pad ⇒ Object (readonly)
Returns the value of attribute pad.
517 518 519 |
# File 'lib/macho/load_commands.rb', line 517 def pad @pad end |