Class: MachO::EncryptionInfoCommand64
- Inherits:
-
LoadCommand
- Object
- MachOStructure
- LoadCommand
- MachO::EncryptionInfoCommand64
- Defined in:
- lib/macho/load_commands.rb
Overview
A load command representing the offset to and size of an encrypted segment. Corresponds to LC_ENCRYPTION_INFO_64.
Constant Summary collapse
- FORMAT =
"L=6"- SIZEOF =
24
Instance Attribute Summary collapse
-
#cryptid ⇒ Fixnum
readonly
The encryption system, or 0 if not encrypted yet.
-
#cryptoff ⇒ Fixnum
readonly
The offset to the encrypted segment.
-
#cryptsize ⇒ Fixnum
readonly
The size of the encrypted segment.
-
#pad ⇒ Fixnum
readonly
64-bit padding value.
Attributes inherited from LoadCommand
Instance Method Summary collapse
-
#initialize(raw_data, offset, cmd, cmdsize, cryptoff, cryptsize, cryptid, pad) ⇒ EncryptionInfoCommand64
constructor
private
A new instance of EncryptionInfoCommand64.
Methods inherited from LoadCommand
Methods inherited from MachOStructure
Constructor Details
#initialize(raw_data, offset, cmd, cmdsize, cryptoff, cryptsize, cryptid, pad) ⇒ EncryptionInfoCommand64
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of EncryptionInfoCommand64.
843 844 845 846 847 848 849 |
# File 'lib/macho/load_commands.rb', line 843 def initialize(raw_data, offset, cmd, cmdsize, cryptoff, cryptsize, cryptid, pad) super(raw_data, offset, cmd, cmdsize) @cryptoff = cryptoff @cryptsize = cryptsize @cryptid = cryptid @pad = pad end |
Instance Attribute Details
#cryptid ⇒ Fixnum (readonly)
Returns the encryption system, or 0 if not encrypted yet.
834 835 836 |
# File 'lib/macho/load_commands.rb', line 834 def cryptid @cryptid end |
#cryptoff ⇒ Fixnum (readonly)
Returns the offset to the encrypted segment.
828 829 830 |
# File 'lib/macho/load_commands.rb', line 828 def cryptoff @cryptoff end |
#cryptsize ⇒ Fixnum (readonly)
Returns the size of the encrypted segment.
831 832 833 |
# File 'lib/macho/load_commands.rb', line 831 def cryptsize @cryptsize end |
#pad ⇒ Fixnum (readonly)
Returns 64-bit padding value.
837 838 839 |
# File 'lib/macho/load_commands.rb', line 837 def pad @pad end |