aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile3
-rw-r--r--challenge.html4
-rw-r--r--static/solver.c3
-rw-r--r--static/solver.js3
-rw-r--r--static/style.css5
-rw-r--r--wasm/solver.c5
6 files changed, 22 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 55b8578..fc75d46 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,6 @@
+# SPDX-License-Identifier: BSD-2-Clause
+# SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>
+
powxy: *.go version.go wasm/solver.wasm
go build -o powxy
diff --git a/challenge.html b/challenge.html
index ea18794..0747afb 100644
--- a/challenge.html
+++ b/challenge.html
@@ -1,3 +1,7 @@
+<!--
+ SPDX-License-Identifier: BSD-2-Clause
+ SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>
+-->
<!DOCTYPE html>
<html lang="en">
<head>
diff --git a/static/solver.c b/static/solver.c
index d76d020..a06140e 100644
--- a/static/solver.c
+++ b/static/solver.c
@@ -1,3 +1,6 @@
+// SPDX-License-Identifier: BSD-2-Clause
+// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>
+//
// 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.
diff --git a/static/solver.js b/static/solver.js
index a3f8366..b440a21 100644
--- a/static/solver.js
+++ b/static/solver.js
@@ -1,3 +1,6 @@
+// SPDX-License-Identifier: BSD-2-Clause
+// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>
+
let wasm_instance = null;
let wasm_exports = null;
diff --git a/static/style.css b/static/style.css
index 6ca536b..154d629 100644
--- a/static/style.css
+++ b/static/style.css
@@ -1,3 +1,8 @@
+/*
+ * SPDX-License-Identifier: BSD-2-Clause
+ * SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>
+ */
+
html {
font-family: sans-serif;
background-color: var(--background-color);
diff --git a/wasm/solver.c b/wasm/solver.c
index f1c4fa6..c0b81dc 100644
--- a/wasm/solver.c
+++ b/wasm/solver.c
@@ -1,3 +1,7 @@
+// SPDX-License-Identifier: BSD-2-Clause
+// SPDX-FileCopyrightText: Copyright (c) 2025 Vicky Williams
+// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu
+
#include "sha256.h"
unsigned char challenge[32];
@@ -40,7 +44,6 @@ unsigned long long solve(unsigned char difficulty) {
sha256_final(&context, hash);
if(validate_hash(hash, difficulty)) {
- // we did it!!
break;
}