Class: MachO::LoadCommands::EncryptionInfoCommand
- Inherits:
-
LoadCommand
- Object
- MachOStructure
- LoadCommand
- MachO::LoadCommands::EncryptionInfoCommand
- 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.
Constant Summary collapse
- FORMAT =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
"L=5".freeze
- SIZEOF =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
20
Instance Attribute Summary collapse
-
#cryptid ⇒ Integer
readonly
The encryption system, or 0 if not encrypted yet.
-
#cryptoff ⇒ Integer
readonly
The offset to the encrypted segment.
-
#cryptsize ⇒ Integer
readonly
The size of the encrypted segment.
Attributes inherited from LoadCommand
Instance Method Summary collapse
-
#initialize(view, cmd, cmdsize, cryptoff, cryptsize, cryptid) ⇒ EncryptionInfoCommand
constructor
private
A new instance of EncryptionInfoCommand.
Methods inherited from LoadCommand
create, new_from_bin, #offset, #serializable?, #serialize, #to_s, #type
Methods inherited from MachOStructure
Constructor Details
#initialize(view, cmd, cmdsize, cryptoff, cryptsize, cryptid) ⇒ EncryptionInfoCommand
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 EncryptionInfoCommand.
1037 1038 1039 1040 1041 1042 |
# File 'lib/macho/load_commands.rb', line 1037 def initialize(view, cmd, cmdsize, cryptoff, cryptsize, cryptid) super(view, cmd, cmdsize) @cryptoff = cryptoff @cryptsize = cryptsize @cryptid = cryptid end |
Instance Attribute Details
#cryptid ⇒ Integer (readonly)
Returns the encryption system, or 0 if not encrypted yet.
1026 1027 1028 |
# File 'lib/macho/load_commands.rb', line 1026 def cryptid @cryptid end |
#cryptoff ⇒ Integer (readonly)
Returns the offset to the encrypted segment.
1020 1021 1022 |
# File 'lib/macho/load_commands.rb', line 1020 def cryptoff @cryptoff end |
#cryptsize ⇒ Integer (readonly)
Returns the size of the encrypted segment.
1023 1024 1025 |
# File 'lib/macho/load_commands.rb', line 1023 def cryptsize @cryptsize end |