aboutsummaryrefslogtreecommitdiff
path: root/privkey.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-24 21:47:40 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-24 22:02:18 +0800
commitdbfadc5a7e5bd3163b49878994063cd6d869fe6a (patch)
tree5200e50de2b41a1f7e4da805fea1234141174e04 /privkey.go
parentcsolver: Remove, it's not needed anymore (diff)
downloadpowxy-dbfadc5a7e5bd3163b49878994063cd6d869fe6a.tar.gz
powxy-dbfadc5a7e5bd3163b49878994063cd6d869fe6a.tar.zst
powxy-dbfadc5a7e5bd3163b49878994063cd6d869fe6a.zip
Refactorv0.1.13
Diffstat (limited to 'privkey.go')
-rw-r--r--privkey.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/privkey.go b/privkey.go
index b12ae4b..7286632 100644
--- a/privkey.go
+++ b/privkey.go
@@ -10,10 +10,15 @@ import (
)
var (
- privkey = make([]byte, 32)
+ // The private key used to HMAC the challenge.
+ privkey = make([]byte, 32)
+
+ // The hash of the private key. We use this as an element of the
+ // identifier.
privkeyHash = make([]byte, 0, sha256.Size)
)
+// This init generates a random private key and its hash.
func init() {
if _, err := rand.Read(privkey); err != nil {
log.Fatal(err)