diff --git a/README.md b/README.md index 79cc55b..8304acc 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,15 @@ # ELF Packer -## Full test suite included!! ✨💅 +Copyright 2023 (c) Aiden Fox Ivey , Alisya K. + +## Methodology + +Under the hood we use [Construct](https://construct.readthedocs.io/en/latest/) to parse the ELF files. We've written our code so that +there is support for 32 and 64 bit ELF files. As is expected, the parser respects the `e_ident[EI_DATA]` rather than assuming the provided +binary is the host encoding or an arbitrary one. + +Thanks must be given to the [elf32.py](https://github.com/construct/construct/blob/master/deprecated_gallery/elf32.py) example provided +in Construct's deprecated gallery, as it demonstrated a very clean way to construct the code. ## Resources