diff --git a/README.md b/README.md index 8caf765..a2300f0 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/chomper) [![GitHub license](https://img.shields.io/github/license/sledgeh4w/chomper)](https://github.com/sledgeh4w/chomper/blob/main/LICENSE) -Chomper is a lightweight emulation framework based on [Unicorn](https://github.com/unicorn-engine/unicorn). It is mainly used to emulate native programs on Android and iOS. +Chomper is a lightweight emulation framework based on [Unicorn](https://github.com/unicorn-engine/unicorn). It is mainly used to emulate iOS executables and libraries. In addition, it also provides limited support for Android native libraries. ## Features @@ -25,7 +25,7 @@ $ pip install chomper ## Usage -Emulate iOS executable files. +Emulate iOS executables. ```python import uuid diff --git a/pyproject.toml b/pyproject.toml index 4872ae5..be0d3aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "chomper" -description = "A lightweight emulation framework for performing encryption or decryption of mobile platform (Android, iOS)." +description = "A lightweight emulation framework for emulating iOS executables and libraries." readme = "README.md" license = { text = "MIT" } authors = [ diff --git a/src/chomper/core.py b/src/chomper/core.py index 330727d..d3d7eee 100644 --- a/src/chomper/core.py +++ b/src/chomper/core.py @@ -30,7 +30,7 @@ class Chomper: - """Lightweight emulation framework for emulating native programs on Android and iOS. + """Lightweight emulation framework for emulating iOS executables and libraries. Args: arch: The architecture to emulate, support ARM and ARM64.