blob: 469c978900d7b0955bcc903a31f2eb2e3678359b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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)
}
|