summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2025-10-07 08:53:24 -0700
committerRose Hogenson <rosehogenson@posteo.net>2025-10-07 08:53:24 -0700
commit2e6f0cfa92f523ca900084c75f398f98ba2e618d (patch)
tree554b93b261d7afa895be775ba1e3d031691f1412 /tools
parent20761675e284e1c31014f79a5c029dce5dc4a99b (diff)
downloadroseh.moe-2e6f0cfa92f523ca900084c75f398f98ba2e618d.tar.zst
Print password correctly
Diffstat (limited to 'tools')
-rw-r--r--tools/hashpw/hashpw.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/hashpw/hashpw.go b/tools/hashpw/hashpw.go
index f6662fa..ac9745d 100644
--- a/tools/hashpw/hashpw.go
+++ b/tools/hashpw/hashpw.go
@@ -22,7 +22,7 @@ func hashpw() error {
if err != nil {
return err
}
- fmt.Printf("%x%x\n", hash, salt)
+ fmt.Printf("notepad-password=%x%x\n", hash, salt)
return nil
}