From 4c3328c51a846ebb7faeef055ce4c11b548db3ad Mon Sep 17 00:00:00 2001 From: Jaakko Koistinen Date: Tue, 4 Feb 2025 17:24:15 +0100 Subject: [PATCH] update README.md --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index 9208f4d..b1ac49f 100644 --- a/README.md +++ b/README.md @@ -111,6 +111,27 @@ go build -ldflags="-s -w" -o ssl-checker main.go - `--lzma`: Uses the LZMA algorithm for optimal compression. - `-o ssl-checker-compressed`: Specifies the name of the compressed output binary. +Execution time: compressed vs uncompressed: +```bash + time ./ssl-checker-compressed +Usage: -H [-p ] [-w ] [-c ] [-t ] + +________________________________________________________ +Executed in 74.73 millis fish external + usr time 71.91 millis 229.00 micros 71.68 millis + sys time 3.10 millis 118.00 micros 2.99 millis + + ``` +```bash +time ./ssl-checker +Usage: -H [-p ] [-w ] [-c ] [-t ] + +________________________________________________________ +Executed in 2.04 millis fish external + usr time 0.22 millis 216.00 micros 0.00 millis + sys time 2.02 millis 112.00 micros 1.91 millis +``` + ### Verifying the Binary is Statically Linked On Linux, confirm the binary is statically linked by checking its dependencies: ```bash