From dbfadc5a7e5bd3163b49878994063cd6d869fe6a Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Mon, 24 Mar 2025 21:47:40 +0800 Subject: Refactor --- validate.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 validate.go (limited to 'validate.go') diff --git a/validate.go b/validate.go new file mode 100644 index 0000000..469c978 --- /dev/null +++ b/validate.go @@ -0,0 +1,18 @@ +// SPDX-License-Identifier: BSD-2-Clause +// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu + +package main + +import ( + "crypto/sha256" +) + +// validateNonce checks if the nonce for the proof of work challenge is valid +// for the given identifier. +func validateNonce(identifier, nonce []byte) bool { + h := sha256.New() + h.Write(identifier) + h.Write(nonce) + ck := h.Sum(nil) + return validateBitZeros(ck, global.NeedBits) +} -- cgit v1.2.3