Skip to content

Commit 1811d35

Browse files
committed
Improve documentation
1 parent 91ed3b0 commit 1811d35

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,17 @@ It supports both IPv4 and IPv6 addresses, and it can optionally preserve the IP
5858

5959
1. Download/Clone this repository.
6060
2. Copy `ipcrypt2.c` and `ipcrypt2.h` directly to your project.
61-
3. Build and link them with your application, either via a traditional compiler or through Zig.
61+
3. Build and link them with your application.
6262

6363
If you are cross-compiling for ARM, make sure your toolchain targets AES-enabled ARM CPUs and sets the appropriate flags.
6464

6565
The `untrinsics.h` file is only required on target CPUs that lack AES hardware support. On systems with AES-NI (x86_64) or AES instructions (ARM64), this file is unnecessary.
6666

67-
Alternatively, a static library can be built.
67+
Alternatively, you can build `ipcrypt2` as a static library. This is useful when you want to:
68+
69+
- Use the library across multiple projects without copying source files
70+
- Manage dependencies more cleanly in larger codebases
71+
- Integrate with build systems that prefer library dependencies
6872

6973
## Building as a Static Library with Make
7074

0 commit comments

Comments
 (0)