Files
SpecterOps-Nemesis/projects
harmj0y b129422e8f ABE v3 fixes and state key retroactive decryption
- Fixed decryption of v3 ABE keys via the CNG chromekey
- Schema mod w/ indexes for ABE mks
- New masterkeys now used to retroactively decrypt Local State keys
    - added retry_decrypt_state_keys_for_masterkey for retroactive decryption
- Added more references
2025-10-16 12:01:34 -07:00
..
2025-10-15 14:09:29 -07:00
2025-10-15 14:09:29 -07:00
2025-08-29 15:24:32 -07:00
2025-10-15 18:25:46 -07:00
2025-08-29 15:24:32 -07:00
2025-08-29 15:24:32 -07:00
2025-08-29 15:24:32 -07:00
2025-06-13 11:33:07 +02:00

Naming Conventions

Projects and libraries should follow Python's PEP8 naming conventions:

Modules should have short, all-lowercase names. Underscores can be used in the module name if it improves readability. Python packages should also have short, all-lowercase names, although the use of underscores is discouraged.

When an extension module written in C or C++ has an accompanying Python module that provides a higher level (e.g. more object oriented) interface, the C/C++ module has a leading underscore (e.g. _socket).