diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-24 06:17:00 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-24 06:17:00 +0800 |
commit | 7d79bb9ea5ca8c839ab331e5603da5580776baa9 (patch) | |
tree | c21261fcd0c200970411f0dc90909d148d227155 | |
parent | Revert "identifier.go: Remove many elements (some mobile browsers mess it up?)" (diff) | |
download | powxy-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.go | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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> |