-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attempt to use generic BitTable for encryption
Currently use 1 Raw block to speed up kelf loading Added region flags Added some Header flags Fixed Kc/Kbit to print in decrypted form Print BitBlock flag secription Try to decrypt elf even if some signatures are wrong
- Loading branch information
Showing
4 changed files
with
228 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,9 @@ CXXFLAGS = --std=c++17 | |
LDLIBS = -lcrypto | ||
|
||
# next flags only for macos | ||
OUTPUT_OPTION = -I/usr/local/opt/[email protected]/include | ||
OUTPUT_OPTION += -I/Users/user/usr/local/Cellar/[email protected]/1.1.1m/include | ||
LDLIBS += -L/Users/user/usr/local/Cellar/[email protected]/1.1.1m/lib | ||
OUTPUT_OPTION += -I/usr/local/opt/[email protected]/include | ||
LDLIBS += -L/usr/local/opt/[email protected]/lib | ||
|
||
objects = $(patsubst $(dir_source)/%.cpp, $(dir_build)/%.o, \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.