diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-24 21:47:40 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-24 22:02:18 +0800 |
commit | dbfadc5a7e5bd3163b49878994063cd6d869fe6a (patch) | |
tree | 5200e50de2b41a1f7e4da805fea1234141174e04 /validate.go | |
parent | csolver: Remove, it's not needed anymore (diff) | |
download | powxy-dbfadc5a7e5bd3163b49878994063cd6d869fe6a.tar.gz powxy-dbfadc5a7e5bd3163b49878994063cd6d869fe6a.tar.zst powxy-dbfadc5a7e5bd3163b49878994063cd6d869fe6a.zip |
Refactorv0.1.13
Diffstat (limited to 'validate.go')
-rw-r--r-- | validate.go | 18 |
1 files changed, 18 insertions, 0 deletions
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 <https://runxiyu.org> + +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) +} |