aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-24 06:17:00 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-24 06:17:00 +0800
commit7d79bb9ea5ca8c839ab331e5603da5580776baa9 (patch)
treec21261fcd0c200970411f0dc90909d148d227155
parentRevert "identifier.go: Remove many elements (some mobile browsers mess it up?)" (diff)
downloadpowxy-7d79bb9ea5ca8c839ab331e5603da5580776baa9.tar.gz
powxy-7d79bb9ea5ca8c839ab331e5603da5580776baa9.tar.zst
powxy-7d79bb9ea5ca8c839ab331e5603da5580776baa9.zip
csolver.go: Notice about 'you should read/understand before running'v0.1.7
-rw-r--r--csolver.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/csolver.go b/csolver.go
index 18ce1b7..ee3516c 100644
--- a/csolver.go
+++ b/csolver.go
@@ -3,7 +3,11 @@
package main
-const solverProgram = `// You need to have OpenSSL, and link with -lcrypto
+const solverProgram = `// This is a reference implementation of the proof of work solver in C.
+// For security reasons, it is recommended that you read and understand the
+// entire program first if you actually want to run it.
+//
+// You need to have OpenSSL, and link with -lcrypto
#include <openssl/evp.h>
#include <openssl/bio.h>