Phase 1: Implement PoW algorithm #1

Merged
krendelhoff merged 14 commits from phase-1-pow into master 2025-08-22 15:57:21 +03:00
4 changed files with 4 additions and 4 deletions
Showing only changes of commit c5dcc2acce - Show all commits

View file

@ -1,4 +1,4 @@
package pow
package challenge
import (
"crypto/rand"

View file

@ -1,4 +1,4 @@
package pow
package challenge
import (
"crypto/rand"

View file

@ -1,4 +1,4 @@
package pow
package challenge
import (
"crypto/hmac"

View file

@ -1,4 +1,4 @@
package pow
package challenge
// Verifier handles validation of PoW challenges
type Verifier struct {